├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── app.json ├── assets ├── icon.png └── splash.png ├── babel.config.js ├── custom-tab-bar.gif ├── package.json ├── src ├── AppEntry.tsx ├── components │ ├── Icon.tsx │ ├── TabBar.tsx │ └── index.tsx ├── router │ └── index.tsx └── screens │ ├── ScreenTemplate.tsx │ └── index.tsx └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/app.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/babel.config.js -------------------------------------------------------------------------------- /custom-tab-bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/custom-tab-bar.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/package.json -------------------------------------------------------------------------------- /src/AppEntry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/src/AppEntry.tsx -------------------------------------------------------------------------------- /src/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/src/components/Icon.tsx -------------------------------------------------------------------------------- /src/components/TabBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/src/components/TabBar.tsx -------------------------------------------------------------------------------- /src/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/src/components/index.tsx -------------------------------------------------------------------------------- /src/router/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/src/router/index.tsx -------------------------------------------------------------------------------- /src/screens/ScreenTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/src/screens/ScreenTemplate.tsx -------------------------------------------------------------------------------- /src/screens/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/src/screens/index.tsx -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrastnik/react-native-custom-tab-bar/HEAD/yarn.lock --------------------------------------------------------------------------------