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

16 lines
419 B
JavaScript
Raw Normal View History

2017-04-13 00:13:44 -04:00
import React from 'react'
import FastImage from 'react-native-fast-image'
2018-03-17 20:21:58 -04:00
import Icon from './Icons/Icon'
2017-04-13 00:13:44 -04:00
import ImageGrid from './ImageGrid'
2017-04-18 01:52:09 -04:00
const FastImageGrid = () => <ImageGrid ImageComponent={FastImage} />
2017-04-13 00:13:44 -04:00
FastImageGrid.navigationOptions = {
2017-04-18 01:52:09 -04:00
tabBarLabel: 'FastImage Grid',
2018-03-17 20:21:58 -04:00
tabBarIcon: props => (
<Icon name="ios-photos-outline" focusedName="ios-photos" {...props} />
),
2017-04-13 00:13:44 -04:00
}
export default FastImageGrid