react-native-wheel-pick 1.1.3 → 1.1.4
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/README.md +11 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ import { Picker, DatePicker } from 'react-native-wheel-pick';
|
|
|
46
46
|
## Note
|
|
47
47
|
|
|
48
48
|
- For DatePicker of iOS use [@react-native-community/datetimepicker](https://github.com/react-native-datetimepicker/datetimepicker)
|
|
49
|
-
- For Picker of iOS use [@react-native-picker/picker](
|
|
49
|
+
- For Picker of iOS use [@react-native-picker/picker](https://github.com/react-native-picker/picker)
|
|
50
50
|
- For Picker and DatePicker of Android use WheelPicker of [WheelPicker](https://github.com/AigeStudio/WheelPicker)
|
|
51
51
|
- Pull request are welcome.
|
|
52
52
|
|
|
@@ -97,8 +97,8 @@ import { Picker, DatePicker } from 'react-native-wheel-pick';
|
|
|
97
97
|
```
|
|
98
98
|
```jsx
|
|
99
99
|
// Android Only.
|
|
100
|
-
// These is special
|
|
101
|
-
// You can also use these
|
|
100
|
+
// These is special props for Android. (iOS not work)
|
|
101
|
+
// You can also use these props for DatePicker, too.
|
|
102
102
|
<Picker
|
|
103
103
|
textColor='red'
|
|
104
104
|
textSize={20}
|
|
@@ -114,12 +114,16 @@ import { Picker, DatePicker } from 'react-native-wheel-pick';
|
|
|
114
114
|
/>
|
|
115
115
|
```
|
|
116
116
|
|
|
117
|
-
## Release Note
|
|
117
|
+
## Release Note
|
|
118
|
+
|
|
119
|
+
### 1.1.4 (June 19 2022)
|
|
120
|
+
- Fix Readme wrong type.
|
|
118
121
|
|
|
119
122
|
### 1.1.3 (June 19 2022)
|
|
120
123
|
|
|
121
124
|
- Restructure code of Picker iOS and Android.
|
|
122
125
|
- pickerData support array of object.
|
|
126
|
+
|
|
123
127
|
[Android]
|
|
124
128
|
- Update sdk support for SDK Version 30 (Google Play need sdk version 30+)
|
|
125
129
|
- Now android support for selectLine selectBackground. Special thanks to [@kaisv7n](https://github.com/darkbluesun) for his pull request,
|
|
@@ -131,6 +135,9 @@ If you want it back pull request are welcome.
|
|
|
131
135
|
- Change some prop name for make code more understandable.
|
|
132
136
|
- If update from version <= 1.1.2. You will get warning about Deprecated prop if you still use, I write some logic for make app not crash. (Please fix warning if possible.)
|
|
133
137
|
|
|
138
|
+
[IOS]
|
|
139
|
+
- Do not use PickerIOS and DatePickerIOS of 'react-native' anymore.
|
|
140
|
+
|
|
134
141
|
# FYI
|
|
135
142
|
|
|
136
143
|
For version 1.1.3 - I update this library support for React Native Version 0.68 / Android 11 / iOS 15.2
|