├── .expo-shared └── assets.json ├── .gitignore ├── App.tsx ├── LICENSE ├── PREVIEW_ANDROID.png ├── PREVIEW_IOS.png ├── README.md ├── app.json ├── assets ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── src ├── components │ ├── TabBarAdvancedButton.tsx │ └── index.ts ├── navigation │ ├── TabBar.tsx │ └── index.ts ├── screens │ ├── EmptyScreen.tsx │ └── index.ts ├── svg │ ├── TabBg.tsx │ └── index.ts └── utils │ └── index.ts ├── tsconfig.json └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/App.tsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/LICENSE -------------------------------------------------------------------------------- /PREVIEW_ANDROID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/PREVIEW_ANDROID.png -------------------------------------------------------------------------------- /PREVIEW_IOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/PREVIEW_IOS.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/app.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/package.json -------------------------------------------------------------------------------- /src/components/TabBarAdvancedButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/src/components/TabBarAdvancedButton.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TabBarAdvancedButton'; 2 | -------------------------------------------------------------------------------- /src/navigation/TabBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/src/navigation/TabBar.tsx -------------------------------------------------------------------------------- /src/navigation/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TabBar'; 2 | -------------------------------------------------------------------------------- /src/screens/EmptyScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/src/screens/EmptyScreen.tsx -------------------------------------------------------------------------------- /src/screens/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EmptyScreen'; 2 | -------------------------------------------------------------------------------- /src/svg/TabBg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/src/svg/TabBg.tsx -------------------------------------------------------------------------------- /src/svg/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TabBg'; 2 | -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-melnyk/clipped-tabbar/HEAD/yarn.lock --------------------------------------------------------------------------------