├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── app.json ├── app ├── (tabs) │ ├── _layout.tsx │ ├── inbox.tsx │ ├── index.tsx │ ├── initiatives.tsx │ ├── my-issues.tsx │ ├── projects.tsx │ ├── pulse.tsx │ ├── second.tsx │ ├── settings.tsx │ ├── third.tsx │ └── view.tsx └── _layout.tsx ├── assets ├── fonts │ ├── Satoshi-Black.otf │ ├── Satoshi-BlackItalic.otf │ ├── Satoshi-Bold.otf │ ├── Satoshi-BoldItalic.otf │ ├── Satoshi-Italic.otf │ ├── Satoshi-Light.otf │ ├── Satoshi-LightItalic.otf │ ├── Satoshi-Medium.otf │ ├── Satoshi-MediumItalic.otf │ ├── Satoshi-Regular.otf │ ├── TypeUnionPaloLight.otf │ └── TypeUnionPaloMedium.otf └── images │ ├── android-icon-background.png │ ├── android-icon-foreground.png │ ├── android-icon-monochrome.png │ ├── favicon.png │ ├── icon.png │ ├── partial-react-logo.png │ ├── react-logo.png │ ├── react-logo@2x.png │ ├── react-logo@3x.png │ └── splash-icon.png ├── bun.lock ├── components ├── helpers │ ├── AnimatedTab.tsx │ ├── DummyTab.tsx │ └── ExpandedMenuItem.tsx ├── index.ts └── linear-tab-bar │ └── index.tsx ├── constants └── index.ts ├── eslint.config.js ├── module.d.ts ├── package.json ├── stylesheet └── index.ts ├── translate-y-animation-only.tsx ├── tsconfig.json ├── typings └── index.ts └── utils ├── navigation.ts └── trigger-haptics.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/app.json -------------------------------------------------------------------------------- /app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /app/(tabs)/inbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/app/(tabs)/inbox.tsx -------------------------------------------------------------------------------- /app/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/app/(tabs)/index.tsx -------------------------------------------------------------------------------- /app/(tabs)/initiatives.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/app/(tabs)/initiatives.tsx -------------------------------------------------------------------------------- /app/(tabs)/my-issues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/app/(tabs)/my-issues.tsx -------------------------------------------------------------------------------- /app/(tabs)/projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/app/(tabs)/projects.tsx -------------------------------------------------------------------------------- /app/(tabs)/pulse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/app/(tabs)/pulse.tsx -------------------------------------------------------------------------------- /app/(tabs)/second.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/app/(tabs)/second.tsx -------------------------------------------------------------------------------- /app/(tabs)/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/app/(tabs)/settings.tsx -------------------------------------------------------------------------------- /app/(tabs)/third.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/app/(tabs)/third.tsx -------------------------------------------------------------------------------- /app/(tabs)/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/app/(tabs)/view.tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /assets/fonts/Satoshi-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/fonts/Satoshi-Black.otf -------------------------------------------------------------------------------- /assets/fonts/Satoshi-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/fonts/Satoshi-BlackItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Satoshi-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/fonts/Satoshi-Bold.otf -------------------------------------------------------------------------------- /assets/fonts/Satoshi-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/fonts/Satoshi-BoldItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Satoshi-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/fonts/Satoshi-Italic.otf -------------------------------------------------------------------------------- /assets/fonts/Satoshi-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/fonts/Satoshi-Light.otf -------------------------------------------------------------------------------- /assets/fonts/Satoshi-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/fonts/Satoshi-LightItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Satoshi-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/fonts/Satoshi-Medium.otf -------------------------------------------------------------------------------- /assets/fonts/Satoshi-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/fonts/Satoshi-MediumItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Satoshi-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/fonts/Satoshi-Regular.otf -------------------------------------------------------------------------------- /assets/fonts/TypeUnionPaloLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/fonts/TypeUnionPaloLight.otf -------------------------------------------------------------------------------- /assets/fonts/TypeUnionPaloMedium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/fonts/TypeUnionPaloMedium.otf -------------------------------------------------------------------------------- /assets/images/android-icon-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/images/android-icon-background.png -------------------------------------------------------------------------------- /assets/images/android-icon-foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/images/android-icon-foreground.png -------------------------------------------------------------------------------- /assets/images/android-icon-monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/images/android-icon-monochrome.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/images/react-logo.png -------------------------------------------------------------------------------- /assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /assets/images/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/assets/images/splash-icon.png -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/bun.lock -------------------------------------------------------------------------------- /components/helpers/AnimatedTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/components/helpers/AnimatedTab.tsx -------------------------------------------------------------------------------- /components/helpers/DummyTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/components/helpers/DummyTab.tsx -------------------------------------------------------------------------------- /components/helpers/ExpandedMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/components/helpers/ExpandedMenuItem.tsx -------------------------------------------------------------------------------- /components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./linear-tab-bar"; 2 | -------------------------------------------------------------------------------- /components/linear-tab-bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/components/linear-tab-bar/index.tsx -------------------------------------------------------------------------------- /constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/constants/index.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/eslint.config.js -------------------------------------------------------------------------------- /module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/module.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/package.json -------------------------------------------------------------------------------- /stylesheet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/stylesheet/index.ts -------------------------------------------------------------------------------- /translate-y-animation-only.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/translate-y-animation-only.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/typings/index.ts -------------------------------------------------------------------------------- /utils/navigation.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/trigger-haptics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-linear-like-bottom-tabs/HEAD/utils/trigger-haptics.ts --------------------------------------------------------------------------------