Blame view

styles.js 329 Bytes
75c87a8d   张志伟   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  /*
   *
   * Created by Stone
   * https://github.com/bolan9999
   * Email: shanshang130@gmail.com
   * Date: 2019/2/14
   *
   */
  
  import { StyleSheet } from "react-native";
  
  export const styles = StyleSheet.create({
    wrapperStyle: {
      flexGrow: 1,
      flexShrink: 1,
      overflow: "scroll"
    },
  
    contentStyle: {
      flexGrow: 1
    }
  });