├── .gitignore ├── .watchmanconfig ├── App.js ├── LICENSE ├── app.json ├── assets ├── hays-profile.jpg ├── icon.png └── splash.png ├── babel.config.js ├── components ├── MenuButton.js └── MenuDrawer.js ├── navigation └── DrawerNavigator.js ├── package.json └── screens ├── HomeScreen.js ├── LinksScreen.js └── SettingsScreen.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/LICENSE -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/app.json -------------------------------------------------------------------------------- /assets/hays-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/assets/hays-profile.jpg -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/MenuButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/components/MenuButton.js -------------------------------------------------------------------------------- /components/MenuDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/components/MenuDrawer.js -------------------------------------------------------------------------------- /navigation/DrawerNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/navigation/DrawerNavigator.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/package.json -------------------------------------------------------------------------------- /screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/screens/HomeScreen.js -------------------------------------------------------------------------------- /screens/LinksScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/screens/LinksScreen.js -------------------------------------------------------------------------------- /screens/SettingsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayscoding/react-native-menu-bar/HEAD/screens/SettingsScreen.js --------------------------------------------------------------------------------