├── .babelrc ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md ├── behind-nav-bar.gif ├── color-3-tab.gif ├── color-4-tab.gif ├── white-3-tab.gif └── white-4-tab.gif ├── .npmignore ├── LICENSE.md ├── README.md ├── example ├── ReactNavigationBottomNavigation.js ├── SimpleBottomNavigation.js └── StatefulBottomNavigation.js ├── index.js ├── lib ├── BottomNavigation.js ├── NavigationComponent.js ├── PressRipple.js ├── RippleBackgroundTransition.js ├── Tab.js └── utils │ └── easing.js └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/behind-nav-bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/.github/behind-nav-bar.gif -------------------------------------------------------------------------------- /.github/color-3-tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/.github/color-3-tab.gif -------------------------------------------------------------------------------- /.github/color-4-tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/.github/color-4-tab.gif -------------------------------------------------------------------------------- /.github/white-3-tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/.github/white-3-tab.gif -------------------------------------------------------------------------------- /.github/white-4-tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/.github/white-4-tab.gif -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github/ 2 | .editorconfig 3 | example -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/README.md -------------------------------------------------------------------------------- /example/ReactNavigationBottomNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/example/ReactNavigationBottomNavigation.js -------------------------------------------------------------------------------- /example/SimpleBottomNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/example/SimpleBottomNavigation.js -------------------------------------------------------------------------------- /example/StatefulBottomNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/example/StatefulBottomNavigation.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/index.js -------------------------------------------------------------------------------- /lib/BottomNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/lib/BottomNavigation.js -------------------------------------------------------------------------------- /lib/NavigationComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/lib/NavigationComponent.js -------------------------------------------------------------------------------- /lib/PressRipple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/lib/PressRipple.js -------------------------------------------------------------------------------- /lib/RippleBackgroundTransition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/lib/RippleBackgroundTransition.js -------------------------------------------------------------------------------- /lib/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/lib/Tab.js -------------------------------------------------------------------------------- /lib/utils/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/lib/utils/easing.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzaku/react-native-material-bottom-navigation-performance/HEAD/package.json --------------------------------------------------------------------------------