Files
react-native-fast-image/ReactNativeFastImageExample/FastImage/App.js
T

33 lines
769 B
JavaScript
Raw Normal View History

2017-04-13 00:13:44 -04:00
import React from 'react'
2017-05-04 02:55:26 -04:00
import { TabNavigator, TabBarBottom } from 'react-navigation'
2018-03-17 20:55:27 -04:00
import FastImageExamples from './FastImageExamples'
import FastImageGrid from './FastImageGrid'
import DefaultImageGrid from './DefaultImageGrid'
2017-04-13 00:13:44 -04:00
2017-04-18 01:52:09 -04:00
const App = TabNavigator(
2018-05-06 19:04:28 -04:00
{
fastImageExample: {
screen: FastImageExamples,
},
image: {
screen: DefaultImageGrid,
},
fastImage: {
screen: FastImageGrid,
},
2017-04-18 01:52:09 -04:00
},
2018-05-06 19:04:28 -04:00
{
tabBarComponent: TabBarBottom,
tabBarPosition: 'bottom',
swipeEnabled: false,
animationEnabled: false,
tabBarOptions: {
style: {
backgroundColor: 'white',
},
},
2017-04-18 01:52:09 -04:00
},
)
2017-04-13 00:13:44 -04:00
export default App