This commit is contained in:
2026-02-23 14:37:25 +01:00
parent 070808737c
commit 125ac0f40f
5 changed files with 52 additions and 15 deletions
+25 -1
View File
@@ -1,5 +1,7 @@
import { View } from 'react-native'
import { StyleSheet, Text, View } from 'react-native'
import React from 'react'
import { Palette } from '../../styles'
import { FONT_FAMILY } from '../../styles/Fonts'
import CreateLyricsHeader from './components/CreateLyricsHeader'
import CustomInput from './components/CustomInput'
@@ -10,6 +12,11 @@ const SpecificityContext = ({ context, setContext }) => {
title="Spécificité du contexte"
subTitle="Dis-nous en un peu plus pour quon puisse mieux taider."
/>
<View style={styles.exampleCard}>
<Text style={styles.exampleText}>
Par ex. : précise des noms, des anecdotes, ton humeur...
</Text>
</View>
<CustomInput
placeholder="Décris le contexte de ta chanson"
height={283}
@@ -21,3 +28,20 @@ const SpecificityContext = ({ context, setContext }) => {
}
export default SpecificityContext
const styles = StyleSheet.create({
exampleCard: {
backgroundColor: Palette.white,
borderRadius: 12,
paddingHorizontal: 12,
paddingVertical: 10,
borderWidth: 1,
borderColor: 'rgba(0,0,0,0.06)',
},
exampleText: {
fontSize: 14,
lineHeight: 20,
color: Palette.black,
fontFamily: FONT_FAMILY.InterRegular,
},
})