├── .bundle └── config ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── README.md ├── __tests__ └── App.test.tsx ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── rnuiapp │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── res │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── gif ├── FAB-demo.gif ├── anim-Tab.gif ├── drawer1.png ├── tab4.jpg └── tab5.jpg ├── index.js ├── ios ├── .xcode.env ├── Podfile ├── Podfile.lock ├── RnUiApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── RnUiApp.xcscheme ├── RnUiApp.xcworkspace │ └── contents.xcworkspacedata ├── RnUiApp │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── RnUiAppTests │ ├── Info.plist │ └── RnUiAppTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── src ├── App.js ├── assets │ └── images │ │ ├── avatar.png │ │ ├── headerImg.jpg │ │ ├── images.ts │ │ └── products │ │ ├── bag1.png │ │ ├── bag10.png │ │ ├── bag11.png │ │ ├── bag2.png │ │ ├── bag3.png │ │ ├── bag4.png │ │ ├── bag5.png │ │ ├── bag6.png │ │ ├── bag7.png │ │ ├── bag8.png │ │ └── bag9.png ├── bottomTab │ ├── AnimTab1.js │ ├── AnimTab2.js │ ├── AnimTab3.js │ ├── Tab4.js │ └── Tab5.js ├── common │ └── Styles.js ├── components │ ├── Icons.tsx │ ├── MapList.tsx │ └── MyHeader.js ├── constants │ ├── Animations.js │ ├── Colors.js │ ├── Constants.js │ ├── Contacts.js │ ├── WhatsApp.ts │ └── images.js └── screens │ ├── ColorScreen.js │ ├── ContactList.js │ ├── DrawerScreen.js │ ├── Home.js │ ├── ListScreen.js │ ├── Screen.js │ ├── animHeaders │ ├── Header2Components.tsx │ ├── HeaderAnim1.tsx │ ├── HeaderAnim2.tsx │ └── HeaderAnim3.tsx │ ├── drawer │ ├── arrays.js │ ├── constant.js │ └── drawer1 │ │ ├── CustomDrawer1.js │ │ ├── DrawerItemList.js │ │ └── DrawerNav1.js │ ├── fab │ └── Fab.js │ └── shop │ ├── DetailsScreen.js │ └── ProductsList.js ├── tsconfig.json └── yarn.lock /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/.bundle/config -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/__tests__/App.test.tsx -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnuiapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/java/com/rnuiapp/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnuiapp/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/java/com/rnuiapp/MainApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/babel.config.js -------------------------------------------------------------------------------- /gif/FAB-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/gif/FAB-demo.gif -------------------------------------------------------------------------------- /gif/anim-Tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/gif/anim-Tab.gif -------------------------------------------------------------------------------- /gif/drawer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/gif/drawer1.png -------------------------------------------------------------------------------- /gif/tab4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/gif/tab4.jpg -------------------------------------------------------------------------------- /gif/tab5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/gif/tab5.jpg -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/RnUiApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/RnUiApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RnUiApp.xcodeproj/xcshareddata/xcschemes/RnUiApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/RnUiApp.xcodeproj/xcshareddata/xcschemes/RnUiApp.xcscheme -------------------------------------------------------------------------------- /ios/RnUiApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/RnUiApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/RnUiApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/RnUiApp/AppDelegate.h -------------------------------------------------------------------------------- /ios/RnUiApp/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/RnUiApp/AppDelegate.mm -------------------------------------------------------------------------------- /ios/RnUiApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/RnUiApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/RnUiApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/RnUiApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/RnUiApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/RnUiApp/Info.plist -------------------------------------------------------------------------------- /ios/RnUiApp/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/RnUiApp/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/RnUiApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/RnUiApp/main.m -------------------------------------------------------------------------------- /ios/RnUiAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/RnUiAppTests/Info.plist -------------------------------------------------------------------------------- /ios/RnUiAppTests/RnUiAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/ios/RnUiAppTests/RnUiAppTests.m -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/avatar.png -------------------------------------------------------------------------------- /src/assets/images/headerImg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/headerImg.jpg -------------------------------------------------------------------------------- /src/assets/images/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/images.ts -------------------------------------------------------------------------------- /src/assets/images/products/bag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/products/bag1.png -------------------------------------------------------------------------------- /src/assets/images/products/bag10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/products/bag10.png -------------------------------------------------------------------------------- /src/assets/images/products/bag11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/products/bag11.png -------------------------------------------------------------------------------- /src/assets/images/products/bag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/products/bag2.png -------------------------------------------------------------------------------- /src/assets/images/products/bag3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/products/bag3.png -------------------------------------------------------------------------------- /src/assets/images/products/bag4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/products/bag4.png -------------------------------------------------------------------------------- /src/assets/images/products/bag5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/products/bag5.png -------------------------------------------------------------------------------- /src/assets/images/products/bag6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/products/bag6.png -------------------------------------------------------------------------------- /src/assets/images/products/bag7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/products/bag7.png -------------------------------------------------------------------------------- /src/assets/images/products/bag8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/products/bag8.png -------------------------------------------------------------------------------- /src/assets/images/products/bag9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/assets/images/products/bag9.png -------------------------------------------------------------------------------- /src/bottomTab/AnimTab1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/bottomTab/AnimTab1.js -------------------------------------------------------------------------------- /src/bottomTab/AnimTab2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/bottomTab/AnimTab2.js -------------------------------------------------------------------------------- /src/bottomTab/AnimTab3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/bottomTab/AnimTab3.js -------------------------------------------------------------------------------- /src/bottomTab/Tab4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/bottomTab/Tab4.js -------------------------------------------------------------------------------- /src/bottomTab/Tab5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/bottomTab/Tab5.js -------------------------------------------------------------------------------- /src/common/Styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/common/Styles.js -------------------------------------------------------------------------------- /src/components/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/components/Icons.tsx -------------------------------------------------------------------------------- /src/components/MapList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/components/MapList.tsx -------------------------------------------------------------------------------- /src/components/MyHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/components/MyHeader.js -------------------------------------------------------------------------------- /src/constants/Animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/constants/Animations.js -------------------------------------------------------------------------------- /src/constants/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/constants/Colors.js -------------------------------------------------------------------------------- /src/constants/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/constants/Constants.js -------------------------------------------------------------------------------- /src/constants/Contacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/constants/Contacts.js -------------------------------------------------------------------------------- /src/constants/WhatsApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/constants/WhatsApp.ts -------------------------------------------------------------------------------- /src/constants/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/constants/images.js -------------------------------------------------------------------------------- /src/screens/ColorScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/ColorScreen.js -------------------------------------------------------------------------------- /src/screens/ContactList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/ContactList.js -------------------------------------------------------------------------------- /src/screens/DrawerScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/DrawerScreen.js -------------------------------------------------------------------------------- /src/screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/Home.js -------------------------------------------------------------------------------- /src/screens/ListScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/ListScreen.js -------------------------------------------------------------------------------- /src/screens/Screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/Screen.js -------------------------------------------------------------------------------- /src/screens/animHeaders/Header2Components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/animHeaders/Header2Components.tsx -------------------------------------------------------------------------------- /src/screens/animHeaders/HeaderAnim1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/animHeaders/HeaderAnim1.tsx -------------------------------------------------------------------------------- /src/screens/animHeaders/HeaderAnim2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/animHeaders/HeaderAnim2.tsx -------------------------------------------------------------------------------- /src/screens/animHeaders/HeaderAnim3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/animHeaders/HeaderAnim3.tsx -------------------------------------------------------------------------------- /src/screens/drawer/arrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/drawer/arrays.js -------------------------------------------------------------------------------- /src/screens/drawer/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/drawer/constant.js -------------------------------------------------------------------------------- /src/screens/drawer/drawer1/CustomDrawer1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/drawer/drawer1/CustomDrawer1.js -------------------------------------------------------------------------------- /src/screens/drawer/drawer1/DrawerItemList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/drawer/drawer1/DrawerItemList.js -------------------------------------------------------------------------------- /src/screens/drawer/drawer1/DrawerNav1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/drawer/drawer1/DrawerNav1.js -------------------------------------------------------------------------------- /src/screens/fab/Fab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/fab/Fab.js -------------------------------------------------------------------------------- /src/screens/shop/DetailsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/shop/DetailsScreen.js -------------------------------------------------------------------------------- /src/screens/shop/ProductsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/src/screens/shop/ProductsList.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalpwr/react-native-ui/HEAD/yarn.lock --------------------------------------------------------------------------------