├── .expo-shared └── assets.json ├── .gitignore ├── .netlify └── state.json ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ ├── App-test.js └── __snapshots__ │ └── App-test.js.snap ├── app.json ├── assets ├── fonts │ └── SpaceMono-Regular.ttf └── images │ ├── icon.png │ ├── robot-dev.png │ ├── robot-prod.png │ └── splash.png ├── babel.config.js ├── components ├── CustomTabBar │ ├── CustomTabBar.jsx │ ├── DynamicHeader.jsx │ ├── TabBar.js │ └── TabLabel.jsx ├── StyledText.js ├── TabBarIcon.js └── __tests__ │ ├── StyledText-test.js │ └── __snapshots__ │ └── StyledText-test.js.snap ├── constants ├── Colors.js └── Layout.js ├── navigation ├── AppNavigator.js ├── HeaderContainer.js ├── HeaderContainer.native.js └── MainTabNavigator.js ├── package.json ├── screens ├── HomeScreen.js ├── LinksScreen.js ├── Search │ ├── Header.js │ ├── SearchBar.ios.js │ ├── SearchBar.js │ └── SearchLayout.js ├── SearchScreen.js └── SettingsScreen.js └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.netlify/state.json: -------------------------------------------------------------------------------- 1 | { 2 | "siteId": "ec575236-f58d-4f91-aa26-ff75137b5018" 3 | } -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Demo: https://expo-tabs.netlify.com 2 | -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /__tests__/__snapshots__/App-test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/__tests__/__snapshots__/App-test.js.snap -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/app.json -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/robot-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/assets/images/robot-dev.png -------------------------------------------------------------------------------- /assets/images/robot-prod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/assets/images/robot-prod.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/CustomTabBar/CustomTabBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/components/CustomTabBar/CustomTabBar.jsx -------------------------------------------------------------------------------- /components/CustomTabBar/DynamicHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/components/CustomTabBar/DynamicHeader.jsx -------------------------------------------------------------------------------- /components/CustomTabBar/TabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/components/CustomTabBar/TabBar.js -------------------------------------------------------------------------------- /components/CustomTabBar/TabLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/components/CustomTabBar/TabLabel.jsx -------------------------------------------------------------------------------- /components/StyledText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/components/StyledText.js -------------------------------------------------------------------------------- /components/TabBarIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/components/TabBarIcon.js -------------------------------------------------------------------------------- /components/__tests__/StyledText-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/components/__tests__/StyledText-test.js -------------------------------------------------------------------------------- /components/__tests__/__snapshots__/StyledText-test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/components/__tests__/__snapshots__/StyledText-test.js.snap -------------------------------------------------------------------------------- /constants/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/constants/Colors.js -------------------------------------------------------------------------------- /constants/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/constants/Layout.js -------------------------------------------------------------------------------- /navigation/AppNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/navigation/AppNavigator.js -------------------------------------------------------------------------------- /navigation/HeaderContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/navigation/HeaderContainer.js -------------------------------------------------------------------------------- /navigation/HeaderContainer.native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/navigation/HeaderContainer.native.js -------------------------------------------------------------------------------- /navigation/MainTabNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/navigation/MainTabNavigator.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/package.json -------------------------------------------------------------------------------- /screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/screens/HomeScreen.js -------------------------------------------------------------------------------- /screens/LinksScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/screens/LinksScreen.js -------------------------------------------------------------------------------- /screens/Search/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/screens/Search/Header.js -------------------------------------------------------------------------------- /screens/Search/SearchBar.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/screens/Search/SearchBar.ios.js -------------------------------------------------------------------------------- /screens/Search/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/screens/Search/SearchBar.js -------------------------------------------------------------------------------- /screens/Search/SearchLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/screens/Search/SearchLayout.js -------------------------------------------------------------------------------- /screens/SearchScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/screens/SearchScreen.js -------------------------------------------------------------------------------- /screens/SettingsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/screens/SettingsScreen.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/react-navigation-web-responsive-tabs-demo/HEAD/yarn.lock --------------------------------------------------------------------------------