A Native Date and Time Picker library for react native which uses Jetpack Compose Material3 Date and Time Pickers under the hood. It uses react Native Fabric Component (New Architecture only)
npm install react-native-jetpack-compose-datetimepicker
import { MaterialDatetimepicker } from 'react-native-jetpack-compose-datetimepicker';
// ...
<MaterialDatetimepicker
defaultDate={pickerState.date}
onCancel={() => console.log('cancel')}
isVisible={true}
onConfirm={(val) => console.log(val)}
confirmText="Confirm"
displayMode="picker"
pickerType="date"
/>;



video_20240731_122631_edit.mp4
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library