├── .DS_Store ├── .gitignore ├── .watchmanconfig ├── App.js ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── app.json ├── assets ├── fonts │ ├── galioExtra.json │ └── galioExtra.ttf ├── icons │ ├── baby.svg │ ├── basket-simple.svg │ ├── camera-18.svg │ ├── chat-33.svg │ ├── circle-10.svg │ ├── preferences-circle-rotate.svg │ ├── shape-star.svg │ ├── shop.svg │ └── zoom-split.svg └── images │ ├── android.png │ ├── icon.png │ ├── ios.png │ └── splash.png ├── babel.config.js ├── components ├── Button.js ├── Drawer.js ├── Header.js ├── Icon.js ├── Product.js ├── Select.js ├── Switch.js ├── Tabs.js └── index.js ├── constants ├── Images.js ├── Theme.js ├── index.js ├── products.js └── utils.js ├── navigation ├── Menu.js └── Screens.js ├── package.json └── screens ├── Components.js ├── Home.js ├── Onboarding.js ├── Pro.js ├── Profile.js └── Settings.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/App.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/app.json -------------------------------------------------------------------------------- /assets/fonts/galioExtra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/fonts/galioExtra.json -------------------------------------------------------------------------------- /assets/fonts/galioExtra.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/fonts/galioExtra.ttf -------------------------------------------------------------------------------- /assets/icons/baby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/icons/baby.svg -------------------------------------------------------------------------------- /assets/icons/basket-simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/icons/basket-simple.svg -------------------------------------------------------------------------------- /assets/icons/camera-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/icons/camera-18.svg -------------------------------------------------------------------------------- /assets/icons/chat-33.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/icons/chat-33.svg -------------------------------------------------------------------------------- /assets/icons/circle-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/icons/circle-10.svg -------------------------------------------------------------------------------- /assets/icons/preferences-circle-rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/icons/preferences-circle-rotate.svg -------------------------------------------------------------------------------- /assets/icons/shape-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/icons/shape-star.svg -------------------------------------------------------------------------------- /assets/icons/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/icons/shop.svg -------------------------------------------------------------------------------- /assets/icons/zoom-split.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/icons/zoom-split.svg -------------------------------------------------------------------------------- /assets/images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/images/android.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/images/ios.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/components/Button.js -------------------------------------------------------------------------------- /components/Drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/components/Drawer.js -------------------------------------------------------------------------------- /components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/components/Header.js -------------------------------------------------------------------------------- /components/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/components/Icon.js -------------------------------------------------------------------------------- /components/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/components/Product.js -------------------------------------------------------------------------------- /components/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/components/Select.js -------------------------------------------------------------------------------- /components/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/components/Switch.js -------------------------------------------------------------------------------- /components/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/components/Tabs.js -------------------------------------------------------------------------------- /components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/components/index.js -------------------------------------------------------------------------------- /constants/Images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/constants/Images.js -------------------------------------------------------------------------------- /constants/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/constants/Theme.js -------------------------------------------------------------------------------- /constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/constants/index.js -------------------------------------------------------------------------------- /constants/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/constants/products.js -------------------------------------------------------------------------------- /constants/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/constants/utils.js -------------------------------------------------------------------------------- /navigation/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/navigation/Menu.js -------------------------------------------------------------------------------- /navigation/Screens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/navigation/Screens.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/package.json -------------------------------------------------------------------------------- /screens/Components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/screens/Components.js -------------------------------------------------------------------------------- /screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/screens/Home.js -------------------------------------------------------------------------------- /screens/Onboarding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/screens/Onboarding.js -------------------------------------------------------------------------------- /screens/Pro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/screens/Pro.js -------------------------------------------------------------------------------- /screens/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/screens/Profile.js -------------------------------------------------------------------------------- /screens/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-kit-react-native/HEAD/screens/Settings.js --------------------------------------------------------------------------------