├── .gitignore ├── .watchmanconfig ├── App.js ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── app.json ├── assets ├── config │ └── argon.json ├── font │ └── argon.ttf ├── icon.png ├── imgs │ ├── android.png │ ├── argon-logo-onboarding.png │ ├── argon-logo-onboarding@2x.png │ ├── argon-logo.png │ ├── argon-logo@2x.png │ ├── argonlogo.png │ ├── bg.png │ ├── getPro-bg.png │ ├── getPro-bg@2x.png │ ├── icon.png │ ├── ios.png │ ├── profile-screen-bg.png │ ├── register-bg.png │ └── splash.png ├── nucleo icons │ └── svg │ │ ├── bag-17.svg │ │ ├── basket.svg │ │ ├── bell.svg │ │ ├── calendar-date.svg │ │ ├── chart-pie-35.svg │ │ ├── diamond.svg │ │ ├── engine-start.svg │ │ ├── g-check.svg │ │ ├── hat-3.svg │ │ ├── ic_mail_24px.svg │ │ ├── map-big.svg │ │ ├── menu-8.svg │ │ ├── nav-down.svg │ │ ├── nav-left.svg │ │ ├── nav-right.svg │ │ ├── padlock-unlocked.svg │ │ ├── palette.svg │ │ ├── search-zoom-in.svg │ │ ├── shop.svg │ │ ├── spaceship.svg │ │ ├── support.svg │ │ ├── switches.svg │ │ └── ungroup.svg └── splash.png ├── babel.config.js ├── components ├── Button.js ├── Card.js ├── DrawerItem.js ├── Header.js ├── Icon.js ├── Input.js ├── Select.js ├── Switch.js ├── Tabs.js └── index.js ├── constants ├── Images.js ├── Theme.js ├── articles.js ├── index.js ├── tabs.js └── utils.js ├── navigation ├── Menu.js └── Screens.js ├── package.json └── screens ├── Articles.js ├── Elements.js ├── Home.js ├── Onboarding.js ├── Pro.js ├── Profile.js └── Register.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | 3 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/App.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/app.json -------------------------------------------------------------------------------- /assets/config/argon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/config/argon.json -------------------------------------------------------------------------------- /assets/font/argon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/font/argon.ttf -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/imgs/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/android.png -------------------------------------------------------------------------------- /assets/imgs/argon-logo-onboarding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/argon-logo-onboarding.png -------------------------------------------------------------------------------- /assets/imgs/argon-logo-onboarding@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/argon-logo-onboarding@2x.png -------------------------------------------------------------------------------- /assets/imgs/argon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/argon-logo.png -------------------------------------------------------------------------------- /assets/imgs/argon-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/argon-logo@2x.png -------------------------------------------------------------------------------- /assets/imgs/argonlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/argonlogo.png -------------------------------------------------------------------------------- /assets/imgs/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/bg.png -------------------------------------------------------------------------------- /assets/imgs/getPro-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/getPro-bg.png -------------------------------------------------------------------------------- /assets/imgs/getPro-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/getPro-bg@2x.png -------------------------------------------------------------------------------- /assets/imgs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/icon.png -------------------------------------------------------------------------------- /assets/imgs/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/ios.png -------------------------------------------------------------------------------- /assets/imgs/profile-screen-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/profile-screen-bg.png -------------------------------------------------------------------------------- /assets/imgs/register-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/register-bg.png -------------------------------------------------------------------------------- /assets/imgs/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/imgs/splash.png -------------------------------------------------------------------------------- /assets/nucleo icons/svg/bag-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/bag-17.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/basket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/basket.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/bell.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/calendar-date.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/calendar-date.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/chart-pie-35.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/chart-pie-35.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/diamond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/diamond.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/engine-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/engine-start.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/g-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/g-check.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/hat-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/hat-3.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/ic_mail_24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/ic_mail_24px.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/map-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/map-big.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/menu-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/menu-8.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/nav-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/nav-down.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/nav-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/nav-left.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/nav-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/nav-right.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/padlock-unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/padlock-unlocked.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/palette.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/search-zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/search-zoom-in.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/shop.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/spaceship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/spaceship.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/support.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/switches.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/switches.svg -------------------------------------------------------------------------------- /assets/nucleo icons/svg/ungroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/nucleo icons/svg/ungroup.svg -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/components/Button.js -------------------------------------------------------------------------------- /components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/components/Card.js -------------------------------------------------------------------------------- /components/DrawerItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/components/DrawerItem.js -------------------------------------------------------------------------------- /components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/components/Header.js -------------------------------------------------------------------------------- /components/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/components/Icon.js -------------------------------------------------------------------------------- /components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/components/Input.js -------------------------------------------------------------------------------- /components/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/components/Select.js -------------------------------------------------------------------------------- /components/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/components/Switch.js -------------------------------------------------------------------------------- /components/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/components/Tabs.js -------------------------------------------------------------------------------- /components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/components/index.js -------------------------------------------------------------------------------- /constants/Images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/constants/Images.js -------------------------------------------------------------------------------- /constants/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/constants/Theme.js -------------------------------------------------------------------------------- /constants/articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/constants/articles.js -------------------------------------------------------------------------------- /constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/constants/index.js -------------------------------------------------------------------------------- /constants/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/constants/tabs.js -------------------------------------------------------------------------------- /constants/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/constants/utils.js -------------------------------------------------------------------------------- /navigation/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/navigation/Menu.js -------------------------------------------------------------------------------- /navigation/Screens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/navigation/Screens.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/package.json -------------------------------------------------------------------------------- /screens/Articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/screens/Articles.js -------------------------------------------------------------------------------- /screens/Elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/screens/Elements.js -------------------------------------------------------------------------------- /screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/screens/Home.js -------------------------------------------------------------------------------- /screens/Onboarding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/screens/Onboarding.js -------------------------------------------------------------------------------- /screens/Pro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/screens/Pro.js -------------------------------------------------------------------------------- /screens/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/screens/Profile.js -------------------------------------------------------------------------------- /screens/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/argon-react-native/HEAD/screens/Register.js --------------------------------------------------------------------------------