mirror of
https://github.com/status-im/react-native-fast-image.git
synced 2025-02-24 20:28:21 +00:00
33 lines
675 B
JavaScript
33 lines
675 B
JavaScript
import React from 'react'
|
|
import { TabNavigator, TabBarBottom } from 'react-navigation'
|
|
import FastImageExamples from './FastImageExamples'
|
|
import FastImageGrid from './FastImageGrid'
|
|
import DefaultImageGrid from './DefaultImageGrid'
|
|
|
|
const App = TabNavigator(
|
|
{
|
|
fastImageExample: {
|
|
screen: FastImageExamples,
|
|
},
|
|
image: {
|
|
screen: DefaultImageGrid,
|
|
},
|
|
fastImage: {
|
|
screen: FastImageGrid,
|
|
},
|
|
},
|
|
{
|
|
tabBarComponent: TabBarBottom,
|
|
tabBarPosition: 'bottom',
|
|
swipeEnabled: false,
|
|
animationEnabled: false,
|
|
tabBarOptions: {
|
|
style: {
|
|
backgroundColor: 'white',
|
|
},
|
|
},
|
|
},
|
|
)
|
|
|
|
export default App
|