├── .circleci └── config.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc ├── .watchmanconfig ├── .yarnclean ├── LICENSE.md ├── README.md ├── __tests__ ├── __mocks__ │ ├── SVG.js │ └── package.json ├── components │ ├── Button.js │ ├── Icon.test.js │ ├── TextInput.test.js │ ├── Touchable.test.js │ └── __snapshots__ │ │ ├── Icon.test.js.snap │ │ ├── TextInput.test.js.snap │ │ └── Touchable.test.js.snap ├── helpers │ ├── Icon.test.js │ ├── Linking.test.js │ ├── Responsive.test.js │ ├── __snapshots__ │ │ └── Icon.test.js.snap │ └── colors.test.js └── package.json ├── android ├── App.iml ├── RNSK.iml ├── app │ ├── BUCK │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ ├── react.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Avenir-Black.ttf │ │ │ ├── Avenir-BlackOblique.ttf │ │ │ ├── Avenir-Book.ttf │ │ │ ├── Avenir-BookOblique.ttf │ │ │ ├── Avenir-Heavy.ttf │ │ │ ├── Avenir-HeavyOblique.ttf │ │ │ ├── Avenir-Light.ttf │ │ │ ├── Avenir-LightOblique.ttf │ │ │ ├── Avenir-Medium.ttf │ │ │ ├── Avenir-MediumOblique.ttf │ │ │ ├── Avenir-Oblique.ttf │ │ │ ├── Avenir-Roman.ttf │ │ │ ├── AvenirLTPro-Black.ttf │ │ │ ├── AvenirLTPro-BlackOblique.ttf │ │ │ ├── AvenirLTPro-Book.ttf │ │ │ ├── AvenirLTPro-BookOblique.ttf │ │ │ ├── AvenirLTPro-Heavy.ttf │ │ │ ├── AvenirLTPro-HeavyOblique.ttf │ │ │ ├── AvenirLTPro-Light.ttf │ │ │ ├── AvenirLTPro-LightOblique.ttf │ │ │ ├── AvenirLTPro-Medium.ttf │ │ │ ├── AvenirLTPro-MediumOblique.ttf │ │ │ ├── AvenirLTPro-Oblique.ttf │ │ │ ├── AvenirLTPro-Roman.ttf │ │ │ ├── Bariol-Bold.ttf │ │ │ └── Bariol-Regular.ttf │ │ ├── java │ │ └── com │ │ │ └── rnsk │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── flow-typed ├── index.js └── npm │ ├── @expo │ └── react-native-action-sheet_vx.x.x.js │ ├── react-native-modal_vx.x.x.js │ ├── react-native-svg_vx.x.x.js │ ├── react-native_vx.x.x.js │ ├── react-navigation_v2.x.x.js │ ├── react-redux_v5.x.x.js │ ├── recompose_vx.x.x.js │ ├── redux-persist_vx.x.x.js │ └── redux_v3.x.x.js ├── index.js ├── ios ├── RNSK-tvOS │ └── Info.plist ├── RNSK-tvOSTests │ └── Info.plist ├── RNSK.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── RNSK-tvOS.xcscheme │ │ └── RNSK.xcscheme ├── RNSK │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── RNSKTests │ ├── Info.plist │ └── RNSKTests.m ├── jsconfig.json ├── package.json ├── src ├── app │ ├── App │ │ ├── Counter │ │ │ ├── connect.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── styles.js │ │ ├── Home │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── styles.js │ │ ├── Settings │ │ │ ├── connect.js │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── index.js │ │ └── package.json │ ├── Auth │ │ ├── Connection │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Inscription │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── connect.js │ │ ├── index.js │ │ └── package.json │ └── Launch │ │ ├── connect.js │ │ ├── index.js │ │ ├── package.json │ │ └── styles.js ├── config │ ├── index.js │ └── package.json ├── helpers │ ├── README.md │ ├── colors │ │ ├── README.md │ │ └── index.js │ ├── icon │ │ ├── README.md │ │ └── index.js │ ├── linking │ │ ├── README.md │ │ └── index.js │ ├── package.json │ └── responsive │ │ ├── README.md │ │ ├── index.js │ │ ├── mq.js │ │ ├── rem.js │ │ └── viewportUnits.js ├── index.js ├── navigation │ ├── AppStack.js │ ├── AuthStack.js │ ├── index.js │ └── package.json ├── redux │ ├── actions.js │ ├── index.js │ ├── modules │ │ ├── app │ │ │ ├── index.js │ │ │ └── types.js │ │ ├── counter │ │ │ ├── index.js │ │ │ └── types.js │ │ └── user │ │ │ ├── index.js │ │ │ └── types.js │ ├── package.json │ └── reducers.js ├── shared │ ├── assets │ │ ├── fonts │ │ │ ├── Avenir-Black.ttf │ │ │ ├── Avenir-BlackOblique.ttf │ │ │ ├── Avenir-Book.ttf │ │ │ ├── Avenir-BookOblique.ttf │ │ │ ├── Avenir-Heavy.ttf │ │ │ ├── Avenir-HeavyOblique.ttf │ │ │ ├── Avenir-Light.ttf │ │ │ ├── Avenir-LightOblique.ttf │ │ │ ├── Avenir-Medium.ttf │ │ │ ├── Avenir-MediumOblique.ttf │ │ │ ├── Avenir-Oblique.ttf │ │ │ ├── Avenir-Roman.ttf │ │ │ ├── Bariol-Bold.ttf │ │ │ └── Bariol-Regular.ttf │ │ ├── images │ │ │ └── background.png │ │ └── package.json │ ├── components │ │ ├── Button │ │ │ ├── README.md │ │ │ ├── constants.js │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Device │ │ │ ├── README.md │ │ │ └── index.js │ │ ├── Icon │ │ │ ├── README.md │ │ │ ├── SVGs │ │ │ │ ├── Back.js │ │ │ │ ├── Home.js │ │ │ │ ├── People.js │ │ │ │ ├── Profile.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── Modal │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── styles.js │ │ │ └── types.js │ │ ├── README.md │ │ ├── TextInput │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── styles.js │ │ │ └── types.js │ │ ├── Touchable │ │ │ ├── README.md │ │ │ └── index.js │ │ ├── index.js │ │ └── package.json │ └── theme │ │ ├── box-shadow.js │ │ ├── colors.js │ │ ├── fonts.js │ │ └── package.json └── types │ ├── index.js │ └── package.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | __tests__/ 2 | coverage/ 3 | flow-typed/ 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/.prettierrc -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/.yarnclean -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__mocks__/SVG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/__tests__/__mocks__/SVG.js -------------------------------------------------------------------------------- /__tests__/__mocks__/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@mocks" 3 | } 4 | -------------------------------------------------------------------------------- /__tests__/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/__tests__/components/Button.js -------------------------------------------------------------------------------- /__tests__/components/Icon.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/__tests__/components/Icon.test.js -------------------------------------------------------------------------------- /__tests__/components/TextInput.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/__tests__/components/TextInput.test.js -------------------------------------------------------------------------------- /__tests__/components/Touchable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/__tests__/components/Touchable.test.js -------------------------------------------------------------------------------- /__tests__/components/__snapshots__/Icon.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/__tests__/components/__snapshots__/Icon.test.js.snap -------------------------------------------------------------------------------- /__tests__/components/__snapshots__/TextInput.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/__tests__/components/__snapshots__/TextInput.test.js.snap -------------------------------------------------------------------------------- /__tests__/components/__snapshots__/Touchable.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/__tests__/components/__snapshots__/Touchable.test.js.snap -------------------------------------------------------------------------------- /__tests__/helpers/Icon.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/__tests__/helpers/Icon.test.js -------------------------------------------------------------------------------- /__tests__/helpers/Linking.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/__tests__/helpers/Linking.test.js -------------------------------------------------------------------------------- /__tests__/helpers/Responsive.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/__tests__/helpers/Responsive.test.js -------------------------------------------------------------------------------- /__tests__/helpers/__snapshots__/Icon.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/__tests__/helpers/__snapshots__/Icon.test.js.snap -------------------------------------------------------------------------------- /__tests__/helpers/colors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/__tests__/helpers/colors.test.js -------------------------------------------------------------------------------- /__tests__/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@tests" 3 | } 4 | -------------------------------------------------------------------------------- /android/App.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/App.iml -------------------------------------------------------------------------------- /android/RNSK.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/RNSK.iml -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/app.iml -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/react.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/react.gradle -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Avenir-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Avenir-Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Avenir-BlackOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Avenir-BlackOblique.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Avenir-Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Avenir-Book.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Avenir-BookOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Avenir-BookOblique.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Avenir-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Avenir-Heavy.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Avenir-HeavyOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Avenir-HeavyOblique.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Avenir-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Avenir-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Avenir-LightOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Avenir-LightOblique.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Avenir-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Avenir-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Avenir-MediumOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Avenir-MediumOblique.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Avenir-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Avenir-Oblique.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Avenir-Roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Avenir-Roman.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AvenirLTPro-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/AvenirLTPro-Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AvenirLTPro-BlackOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/AvenirLTPro-BlackOblique.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AvenirLTPro-Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/AvenirLTPro-Book.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AvenirLTPro-BookOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/AvenirLTPro-BookOblique.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AvenirLTPro-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/AvenirLTPro-Heavy.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AvenirLTPro-HeavyOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/AvenirLTPro-HeavyOblique.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AvenirLTPro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/AvenirLTPro-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AvenirLTPro-LightOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/AvenirLTPro-LightOblique.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AvenirLTPro-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/AvenirLTPro-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AvenirLTPro-MediumOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/AvenirLTPro-MediumOblique.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AvenirLTPro-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/AvenirLTPro-Oblique.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AvenirLTPro-Roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/AvenirLTPro-Roman.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Bariol-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Bariol-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Bariol-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/assets/fonts/Bariol-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnsk/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/java/com/rnsk/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnsk/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/java/com/rnsk/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/app.json -------------------------------------------------------------------------------- /flow-typed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/flow-typed/index.js -------------------------------------------------------------------------------- /flow-typed/npm/@expo/react-native-action-sheet_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/flow-typed/npm/@expo/react-native-action-sheet_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-native-modal_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/flow-typed/npm/react-native-modal_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-native-svg_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/flow-typed/npm/react-native-svg_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-native_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/flow-typed/npm/react-native_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-navigation_v2.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/flow-typed/npm/react-navigation_v2.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-redux_v5.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/flow-typed/npm/react-redux_v5.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/recompose_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/flow-typed/npm/recompose_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redux-persist_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/flow-typed/npm/redux-persist_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redux_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/flow-typed/npm/redux_v3.x.x.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/index.js -------------------------------------------------------------------------------- /ios/RNSK-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSK-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/RNSK-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSK-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/RNSK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNSK.xcodeproj/xcshareddata/xcschemes/RNSK-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSK.xcodeproj/xcshareddata/xcschemes/RNSK-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/RNSK.xcodeproj/xcshareddata/xcschemes/RNSK.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSK.xcodeproj/xcshareddata/xcschemes/RNSK.xcscheme -------------------------------------------------------------------------------- /ios/RNSK/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSK/AppDelegate.h -------------------------------------------------------------------------------- /ios/RNSK/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSK/AppDelegate.m -------------------------------------------------------------------------------- /ios/RNSK/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSK/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/RNSK/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSK/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/RNSK/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSK/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/RNSK/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSK/Info.plist -------------------------------------------------------------------------------- /ios/RNSK/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSK/main.m -------------------------------------------------------------------------------- /ios/RNSKTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSKTests/Info.plist -------------------------------------------------------------------------------- /ios/RNSKTests/RNSKTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/ios/RNSKTests/RNSKTests.m -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/package.json -------------------------------------------------------------------------------- /src/app/App/Counter/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/App/Counter/connect.js -------------------------------------------------------------------------------- /src/app/App/Counter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/App/Counter/index.js -------------------------------------------------------------------------------- /src/app/App/Counter/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@Counter" 3 | } 4 | -------------------------------------------------------------------------------- /src/app/App/Counter/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/App/Counter/styles.js -------------------------------------------------------------------------------- /src/app/App/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/App/Home/index.js -------------------------------------------------------------------------------- /src/app/App/Home/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@Home" 3 | } 4 | -------------------------------------------------------------------------------- /src/app/App/Home/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/App/Home/styles.js -------------------------------------------------------------------------------- /src/app/App/Settings/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/App/Settings/connect.js -------------------------------------------------------------------------------- /src/app/App/Settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/App/Settings/index.js -------------------------------------------------------------------------------- /src/app/App/Settings/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/App/Settings/styles.js -------------------------------------------------------------------------------- /src/app/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/App/index.js -------------------------------------------------------------------------------- /src/app/App/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@App" 3 | } 4 | -------------------------------------------------------------------------------- /src/app/Auth/Connection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/Auth/Connection/index.js -------------------------------------------------------------------------------- /src/app/Auth/Connection/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/Auth/Connection/styles.js -------------------------------------------------------------------------------- /src/app/Auth/Inscription/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/Auth/Inscription/index.js -------------------------------------------------------------------------------- /src/app/Auth/Inscription/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/Auth/Inscription/styles.js -------------------------------------------------------------------------------- /src/app/Auth/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/Auth/connect.js -------------------------------------------------------------------------------- /src/app/Auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/Auth/index.js -------------------------------------------------------------------------------- /src/app/Auth/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@Auth" 3 | } 4 | -------------------------------------------------------------------------------- /src/app/Launch/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/Launch/connect.js -------------------------------------------------------------------------------- /src/app/Launch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/Launch/index.js -------------------------------------------------------------------------------- /src/app/Launch/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@Launch" 3 | } 4 | -------------------------------------------------------------------------------- /src/app/Launch/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/app/Launch/styles.js -------------------------------------------------------------------------------- /src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/config/index.js -------------------------------------------------------------------------------- /src/config/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@config" 3 | } 4 | -------------------------------------------------------------------------------- /src/helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/helpers/README.md -------------------------------------------------------------------------------- /src/helpers/colors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/helpers/colors/README.md -------------------------------------------------------------------------------- /src/helpers/colors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/helpers/colors/index.js -------------------------------------------------------------------------------- /src/helpers/icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/helpers/icon/README.md -------------------------------------------------------------------------------- /src/helpers/icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/helpers/icon/index.js -------------------------------------------------------------------------------- /src/helpers/linking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/helpers/linking/README.md -------------------------------------------------------------------------------- /src/helpers/linking/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/helpers/linking/index.js -------------------------------------------------------------------------------- /src/helpers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@helpers" 3 | } 4 | -------------------------------------------------------------------------------- /src/helpers/responsive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/helpers/responsive/README.md -------------------------------------------------------------------------------- /src/helpers/responsive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/helpers/responsive/index.js -------------------------------------------------------------------------------- /src/helpers/responsive/mq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/helpers/responsive/mq.js -------------------------------------------------------------------------------- /src/helpers/responsive/rem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/helpers/responsive/rem.js -------------------------------------------------------------------------------- /src/helpers/responsive/viewportUnits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/helpers/responsive/viewportUnits.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/index.js -------------------------------------------------------------------------------- /src/navigation/AppStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/navigation/AppStack.js -------------------------------------------------------------------------------- /src/navigation/AuthStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/navigation/AuthStack.js -------------------------------------------------------------------------------- /src/navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/navigation/index.js -------------------------------------------------------------------------------- /src/navigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@navigation" 3 | } 4 | -------------------------------------------------------------------------------- /src/redux/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/redux/actions.js -------------------------------------------------------------------------------- /src/redux/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/redux/index.js -------------------------------------------------------------------------------- /src/redux/modules/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/redux/modules/app/index.js -------------------------------------------------------------------------------- /src/redux/modules/app/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/redux/modules/app/types.js -------------------------------------------------------------------------------- /src/redux/modules/counter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/redux/modules/counter/index.js -------------------------------------------------------------------------------- /src/redux/modules/counter/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/redux/modules/counter/types.js -------------------------------------------------------------------------------- /src/redux/modules/user/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/redux/modules/user/index.js -------------------------------------------------------------------------------- /src/redux/modules/user/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/redux/modules/user/types.js -------------------------------------------------------------------------------- /src/redux/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@redux" 3 | } 4 | -------------------------------------------------------------------------------- /src/redux/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/redux/reducers.js -------------------------------------------------------------------------------- /src/shared/assets/fonts/Avenir-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Avenir-Black.ttf -------------------------------------------------------------------------------- /src/shared/assets/fonts/Avenir-BlackOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Avenir-BlackOblique.ttf -------------------------------------------------------------------------------- /src/shared/assets/fonts/Avenir-Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Avenir-Book.ttf -------------------------------------------------------------------------------- /src/shared/assets/fonts/Avenir-BookOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Avenir-BookOblique.ttf -------------------------------------------------------------------------------- /src/shared/assets/fonts/Avenir-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Avenir-Heavy.ttf -------------------------------------------------------------------------------- /src/shared/assets/fonts/Avenir-HeavyOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Avenir-HeavyOblique.ttf -------------------------------------------------------------------------------- /src/shared/assets/fonts/Avenir-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Avenir-Light.ttf -------------------------------------------------------------------------------- /src/shared/assets/fonts/Avenir-LightOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Avenir-LightOblique.ttf -------------------------------------------------------------------------------- /src/shared/assets/fonts/Avenir-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Avenir-Medium.ttf -------------------------------------------------------------------------------- /src/shared/assets/fonts/Avenir-MediumOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Avenir-MediumOblique.ttf -------------------------------------------------------------------------------- /src/shared/assets/fonts/Avenir-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Avenir-Oblique.ttf -------------------------------------------------------------------------------- /src/shared/assets/fonts/Avenir-Roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Avenir-Roman.ttf -------------------------------------------------------------------------------- /src/shared/assets/fonts/Bariol-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Bariol-Bold.ttf -------------------------------------------------------------------------------- /src/shared/assets/fonts/Bariol-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/fonts/Bariol-Regular.ttf -------------------------------------------------------------------------------- /src/shared/assets/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/assets/images/background.png -------------------------------------------------------------------------------- /src/shared/assets/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@assets" 3 | } 4 | -------------------------------------------------------------------------------- /src/shared/components/Button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Button/README.md -------------------------------------------------------------------------------- /src/shared/components/Button/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Button/constants.js -------------------------------------------------------------------------------- /src/shared/components/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Button/index.js -------------------------------------------------------------------------------- /src/shared/components/Button/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Button/styles.js -------------------------------------------------------------------------------- /src/shared/components/Device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Device/README.md -------------------------------------------------------------------------------- /src/shared/components/Device/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Device/index.js -------------------------------------------------------------------------------- /src/shared/components/Icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Icon/README.md -------------------------------------------------------------------------------- /src/shared/components/Icon/SVGs/Back.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Icon/SVGs/Back.js -------------------------------------------------------------------------------- /src/shared/components/Icon/SVGs/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Icon/SVGs/Home.js -------------------------------------------------------------------------------- /src/shared/components/Icon/SVGs/People.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Icon/SVGs/People.js -------------------------------------------------------------------------------- /src/shared/components/Icon/SVGs/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Icon/SVGs/Profile.js -------------------------------------------------------------------------------- /src/shared/components/Icon/SVGs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Icon/SVGs/index.js -------------------------------------------------------------------------------- /src/shared/components/Icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Icon/index.js -------------------------------------------------------------------------------- /src/shared/components/Modal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Modal/README.md -------------------------------------------------------------------------------- /src/shared/components/Modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Modal/index.js -------------------------------------------------------------------------------- /src/shared/components/Modal/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Modal/styles.js -------------------------------------------------------------------------------- /src/shared/components/Modal/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Modal/types.js -------------------------------------------------------------------------------- /src/shared/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/README.md -------------------------------------------------------------------------------- /src/shared/components/TextInput/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/TextInput/README.md -------------------------------------------------------------------------------- /src/shared/components/TextInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/TextInput/index.js -------------------------------------------------------------------------------- /src/shared/components/TextInput/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/TextInput/styles.js -------------------------------------------------------------------------------- /src/shared/components/TextInput/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/TextInput/types.js -------------------------------------------------------------------------------- /src/shared/components/Touchable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Touchable/README.md -------------------------------------------------------------------------------- /src/shared/components/Touchable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/Touchable/index.js -------------------------------------------------------------------------------- /src/shared/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/components/index.js -------------------------------------------------------------------------------- /src/shared/components/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@components" 3 | } 4 | -------------------------------------------------------------------------------- /src/shared/theme/box-shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/theme/box-shadow.js -------------------------------------------------------------------------------- /src/shared/theme/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/theme/colors.js -------------------------------------------------------------------------------- /src/shared/theme/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/shared/theme/fonts.js -------------------------------------------------------------------------------- /src/shared/theme/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@theme" 3 | } 4 | -------------------------------------------------------------------------------- /src/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/src/types/index.js -------------------------------------------------------------------------------- /src/types/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@types" 3 | } 4 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-native-simple-kit/HEAD/yarn.lock --------------------------------------------------------------------------------