You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
React-Native-Paper-Dates currently supports `en/nl/de/pl/pt/ar/ko/fr/tr/enGB` translations. Ideally you would do this somewhere before react-native-paper-dates is used. For example, you might add the follow to your `index.js` or `app.js`.
39
+
React-Native-Paper-Dates currently supports `en/nl/de/pl/pt/ar/ko/fr/he/tr/enGB` translations. Ideally you would do this somewhere before react-native-paper-dates is used. For example, you might add the follow to your `index.js` or `app.js`.
React-Native-Paper-Dates also provides the ability to register your own translation. Ideally you would do this somewhere before react-native-paper-dates is used. For example, you might add the follow to your `index.js` or `app.js`.
// Are you using Expo, use this instead of previous 2 lines
159
154
// Intl.DateTimeFormat.__setDefaultTimeZone(
@@ -169,9 +164,9 @@ if (isHermesEnabled || isAndroid) { // this line is only needed if you don't us
169
164
- Try to avoid putting the Picker Modals inside of a scrollView If that is not possible use the following props on the surrounding ScrollViews/Flatlists
170
165
171
166
```javascript
172
-
keyboardDismissMode="on-drag"
173
-
keyboardShouldPersistTaps="handled"
174
-
contentInsetAdjustmentBehavior="always"
167
+
keyboardDismissMode='on-drag'
168
+
keyboardShouldPersistTaps='handled'
169
+
contentInsetAdjustmentBehavior='always'
175
170
```
176
171
177
172
This is to prevent the need to press 2 times before save or close button in modal works (1 press for closing keyboard, 1 press for confirm/close) [React Native Issue: #10138](https://github.com/facebook/react-native/issues/10138)
0 commit comments