From fdb4faa6dd24d04a9036962f79df33c0b641a8ed Mon Sep 17 00:00:00 2001 From: Henning Hall Date: Wed, 16 May 2018 22:38:42 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 3a0b760..c683091 100644 --- a/README.md +++ b/README.md @@ -47,3 +47,19 @@ const styles = StyleSheet.create({ ``` +## Goal +The goal is to make a cross platform variant of [DatePickerIOS](https://facebook.github.io/react-native/docs/datepickerios.html) by implementing a Android variant with similar look and feel. +![react native date picker](https://facebook.github.io/react-native/docs/assets/DatePickerIOS/maximumDate.gif) + + + +## TODO +- [x] Mode: datetime +- [x] Locale support. (AM/PM, 12h/24h toggled and strings translated) +- [x] Replace todays date with the string "Today" (considering locale) +- [ ] Animate to date when state change occur. +- [ ] Transparent background support. (Probably need to include transparent gradient). +- [ ] Align text to right. +- [ ] Mode: date +- [ ] Mode: time +- [ ] Support maximumDate/minimumDate. (Gray out and animate back to max/min value if exceeded). From 26c480b2a2cae29b7ee3b3b9d4684ad624e95fe4 Mon Sep 17 00:00:00 2001 From: Henning Hall Date: Wed, 16 May 2018 22:39:08 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c683091..abe1dea 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ const styles = StyleSheet.create({ ## Goal The goal is to make a cross platform variant of [DatePickerIOS](https://facebook.github.io/react-native/docs/datepickerios.html) by implementing a Android variant with similar look and feel. + ![react native date picker](https://facebook.github.io/react-native/docs/assets/DatePickerIOS/maximumDate.gif)