@hitesh0009/react-native-basic-form 1.1.10 → 1.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Form.js +1 -1
- package/package.json +1 -1
- package/src/Form.tsx +0 -1
package/dist/Form.js
CHANGED
|
@@ -10,7 +10,7 @@ export const Form = ({ data, gap_bwt_keyValue = 10, gap_bwt_keys = 12, lableStyl
|
|
|
10
10
|
</Text>)}
|
|
11
11
|
</View>)}
|
|
12
12
|
|
|
13
|
-
<FlatList
|
|
13
|
+
<FlatList data={data} {...flatlistProps} ItemSeparatorComponent={() => <View style={{ height: gap_bwt_keys }}/>} renderItem={({ item }) => (<View style={{ gap: gap_bwt_keyValue }}>
|
|
14
14
|
{item.label && (<Text style={[styles.lable, lableStyle]}>{item.label}</Text>)}
|
|
15
15
|
|
|
16
16
|
{item.input && (<View style={inputTextContainerStyle}>
|
package/package.json
CHANGED
package/src/Form.tsx
CHANGED