diff --git a/README.md b/README.md index 90db400..0e988be 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,27 @@ # react-native-starter + A Boilerplate application for building REACT NATIVE APP (redux, saga, context, theme, localization, tabs with animation) + +### - Latest react native version 0.63.2 + +### - Redux saga + +### - Localization + +### - Theme support (Dark / Light) + +### - Postinstall script for auto pod install after yarn install + +### - Utility for validations and error messages + +### - Custom font and fontsize for maintain typography + +### - Persist redux storage + +### - Support different env for PRODUCTION and DEVELOPMENT + +### - Auth screens (Login and Signup) + +### Example + +![Example](images/preivew.gif) diff --git a/images/preview.gif b/images/preview.gif new file mode 100644 index 0000000..897e6eb Binary files /dev/null and b/images/preview.gif differ diff --git a/images/simulator_screenshot_0EDBCF48-A799-4E63-AE25-2CA0AB6491EC.png b/images/simulator_screenshot_0EDBCF48-A799-4E63-AE25-2CA0AB6491EC.png new file mode 100644 index 0000000..f255a5c Binary files /dev/null and b/images/simulator_screenshot_0EDBCF48-A799-4E63-AE25-2CA0AB6491EC.png differ diff --git a/ios/Podfile.lock b/ios/Podfile.lock index b1d1a44..d04a24b 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -532,4 +532,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: dd96ed7b19a446b9cf803e9979cf1b1b9ff71294 -COCOAPODS: 1.9.3 +COCOAPODS: 1.10.0 diff --git a/package.json b/package.json index 93dad06..6507469 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,8 @@ "ios": "react-native run-ios", "start": "react-native start", "test": "jest", - "lint": "eslint ." + "lint": "eslint .", + "postinstall": "sh postinstall" }, "dependencies": { "@react-native-community/async-storage": "^1.12.0", diff --git a/postinstall b/postinstall new file mode 100644 index 0000000..40122c2 --- /dev/null +++ b/postinstall @@ -0,0 +1 @@ +npx pod-install \ No newline at end of file