aliyun-oss-react-native

global.js 483B

12345678910111213141516171819202122232425262728
  1. import { StyleSheet } from 'react-native'
  2. export const styles = StyleSheet.create({
  3. container: {
  4. flexDirection:'column',
  5. backgroundColor: '#F5FCFF',
  6. flexWrap:'wrap'
  7. },
  8. description: {
  9. fontSize:20,
  10. marginTop:10,
  11. marginLeft:10,
  12. marginBottom:20
  13. },
  14. item: {
  15. justifyContent:'space-around',
  16. marginBottom:10
  17. },
  18. button:{
  19. margin:10
  20. },
  21. detailitem: {
  22. flexDirection:'row',
  23. justifyContent:'flex-start',
  24. flexWrap:'wrap'
  25. }
  26. });