Skip to content

Commit 7374e00

Browse files
committed
Update PlateScreen.tsx
1 parent 1f9a0fd commit 7374e00

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

src/screens/plate/PlateScreen.tsx

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, {useCallback, useEffect, useRef, useState} from 'react';
22

3-
import {Text, TouchableOpacity, View} from 'react-native';
3+
import {Text, TextInput, TouchableOpacity, View} from 'react-native';
44
import BottomSheet, {BottomSheetView} from '@gorhom/bottom-sheet';
55
import {Colors} from '../../utils/colors.ts';
66

@@ -36,6 +36,33 @@ const PlateScreen = () => {
3636
Ajouter un Repas
3737
</Text>
3838
</View>
39+
<View
40+
style={{
41+
flex: 1,
42+
}}>
43+
<TextInput
44+
style={{
45+
height: 40,
46+
borderColor: 'gray',
47+
borderWidth: 1,
48+
padding: 10,
49+
margin: 10,
50+
borderRadius: 10,
51+
}}
52+
placeholder="Nom du repas"
53+
/>
54+
<TextInput
55+
style={{
56+
height: 40,
57+
borderColor: 'gray',
58+
borderWidth: 1,
59+
padding: 10,
60+
margin: 10,
61+
borderRadius: 10,
62+
}}
63+
placeholder="Description"
64+
/>
65+
</View>
3966
</BottomSheetView>
4067
</BottomSheet>
4168
);

0 commit comments

Comments
 (0)