35 lines
577 B
JavaScript
35 lines
577 B
JavaScript
|
import { StyleSheet } from 'react-native';
|
||
|
|
||
|
export default StyleSheet.create({
|
||
|
typing: { fontWeight: 'bold', paddingHorizontal: 15, height: 25 },
|
||
|
container: {
|
||
|
flex: 1,
|
||
|
backgroundColor: '#fff'
|
||
|
},
|
||
|
safeAreaView: {
|
||
|
flex: 1
|
||
|
},
|
||
|
list: {
|
||
|
flex: 1,
|
||
|
transform: [{ scaleY: -1 }]
|
||
|
},
|
||
|
separator: {
|
||
|
height: 1,
|
||
|
backgroundColor: '#CED0CE'
|
||
|
},
|
||
|
bannerContainer: {
|
||
|
backgroundColor: 'orange'
|
||
|
},
|
||
|
bannerText: {
|
||
|
margin: 5,
|
||
|
textAlign: 'center',
|
||
|
color: '#a00'
|
||
|
},
|
||
|
loadingMore: {
|
||
|
transform: [{ scaleY: -1 }],
|
||
|
textAlign: 'center',
|
||
|
padding: 5,
|
||
|
color: '#ccc'
|
||
|
}
|
||
|
});
|