(name: string)
| 10 | import TouchableBounce from 'react-native/Libraries/Components/Touchable/TouchableBounce'; |
| 11 | |
| 12 | const tabBarIcon = (name: string) => ({ |
| 13 | tintColor, |
| 14 | horizontal, |
| 15 | }: { |
| 16 | tintColor: string; |
| 17 | horizontal: boolean; |
| 18 | }) => ( |
| 19 | <MaterialIcons name={name} color={tintColor} size={horizontal ? 17 : 24} /> |
| 20 | ); |
| 21 | |
| 22 | class AlbumsScreen extends React.Component { |
| 23 | static navigationOptions = { |
no outgoing calls
no test coverage detected
searching dependent graphs…