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
it´s my first react-native project and I am currently trying to get the timepicker working for my project. The app is currently only available in german so I need the timepicker in german.
This is my code:
index.js:
`import {registerRootComponent} from 'expo';
import {de, registerTranslation} from 'react-native-paper-dates';
Hey! Thanks for opening the issue. Can you provide more information about the issue? Please fill the issue template when opening the issue without deleting any section. We need all the information we can, to be able to help. Make sure to at least provide - Current behaviour, Expected behaviour, A way to reproduce the issue with minimal code (link to snack.expo.dev) or a repo on GitHub, and the information about your environment (such as the platform of the device, versions of all the packages etc.).
Hello,
it´s my first react-native project and I am currently trying to get the timepicker working for my project. The app is currently only available in german so I need the timepicker in german.
This is my code:
index.js:
`import {registerRootComponent} from 'expo';
import {de, registerTranslation} from 'react-native-paper-dates';
import Main from './Main';
registerTranslation('de', de);
registerRootComponent(Main);`
The call for the timepicker:
<TimePickerModal locale="de" visible={openTimePicker} onDismiss={() => setOpenTimePicker(false)} onConfirm={() => setOpenTimePicker(false)} hours={reminder.hours} minutes={reminder.minutes} />
With this the text like 'Select time' and the button texts are in english:
I am wondering, if I need to set the labels and button texts manually or if I am missing a configuration.
Thank you for responding in advance!
The text was updated successfully, but these errors were encountered: