Skip to content

Commit 2031759

Browse files
committed
Update text color
1 parent 4a57bb9 commit 2031759

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ const styles = StyleSheet.create({
131131

132132
## Method
133133

134-
| Properties | Type | Description |
135-
| ------------------------ | ---------- | ------------------------------------- |
134+
| Properties | Type | Description |
135+
| ------------------------ | ---------- | ------------------------------------- |
136136
| **onOpen** | `function` | SheetManager show |
137137
| **onClose** | `function` | SheetManager hide |
138138

@@ -141,7 +141,7 @@ const styles = StyleSheet.create({
141141

142142
| Properties | Type | Description |
143143
| -------------------- | -------- | -------------------------------------------------------------------------------------------------------------------- |
144-
| **actionsShetProps** | `object` | [react-native-actions-sheet](https://github.com/ammarahm-ed/react-native-actions-sheet 'react-native-actions-sheet') | |
144+
| **actionsSheetProps** | `object` | [react-native-actions-sheet](https://github.com/ammarahm-ed/react-native-actions-sheet 'react-native-actions-sheet') | |
145145
| **flatListProps** | `object` | [FlatListProps](https://reactnative.dev/docs/flatlist 'FlatListProps') | |
146146
| **searchInputProps** | `object` | [TextInputProps](https://reactnative.dev/docs/textinput 'TextInputProps') | |
147147

src/components/Picker.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export const Picker = <T,>({
136136
onClose();
137137
}}
138138
>
139-
<Text>{closeText}</Text>
139+
<Text style={{color: '#333'}}>{closeText}</Text>
140140
</TouchableOpacity>
141141
</View>
142142
) : null}
@@ -171,7 +171,7 @@ export const Picker = <T,>({
171171
paddingTop: 20,
172172
}}
173173
>
174-
<Text>{noDataFoundText}</Text>
174+
<Text style={{color: '#333'}}>{noDataFoundText}</Text>
175175
</View>
176176
);
177177
}

0 commit comments

Comments
 (0)