tmp
This commit is contained in:
parent
a550407e51
commit
47991da302
|
@ -0,0 +1,34 @@
|
|||
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'
|
||||
}
|
||||
});
|
Loading…
Reference in New Issue