Authored by 孙凯

修改 UI review by daiqiang

... ... @@ -293,7 +293,7 @@ let styles = StyleSheet.create({
textAlign: 'center',
color: 'white',
fontSize: 14 * DEVICE_WIDTH_RATIO,
lineHeight: Platform.OS === 'ios' ? Math.ceil(26 * DEVICE_WIDTH_RATIO) : Math.ceil(30 * DEVICE_WIDTH_RATIO),
lineHeight: Platform.OS === 'ios' ? 44 * DEVICE_WIDTH_RATIO : Math.ceil(30 * DEVICE_WIDTH_RATIO),
backgroundColor: 'transparent',
},
bankCellContainer: {
... ...
... ... @@ -184,7 +184,7 @@ let styles = StyleSheet.create({
open_text:{
width: width - 70 * DEVICE_WIDTH_RATIO,
height: 44 * DEVICE_WIDTH_RATIO,
lineHeight: Math.ceil(29 * DEVICE_WIDTH_RATIO),
lineHeight: 44 * DEVICE_WIDTH_RATIO,
textAlign:'center',
color:"white",
fontSize: 14 * DEVICE_WIDTH_RATIO,
... ... @@ -200,7 +200,7 @@ let styles = StyleSheet.create({
alignItems: 'center',
justifyContent: 'center',
fontSize: 15 * DEVICE_WIDTH_RATIO,
lineHeight: Math.ceil(27 * DEVICE_WIDTH_RATIO),
lineHeight: 41 * DEVICE_WIDTH_RATIO,
height: 40 * DEVICE_WIDTH_RATIO,
width: width,
textAlign:'center',
... ...
... ... @@ -159,12 +159,13 @@ let styles = StyleSheet.create({
titleAndInputContainer: {
flexDirection: 'row',
height: 44 * DEVICE_WIDTH_RATIO,
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
title: {
height: 44 * DEVICE_WIDTH_RATIO,
lineHeight: Math.ceil(30 * DEVICE_WIDTH_RATIO),
lineHeight: 44 * DEVICE_WIDTH_RATIO,
fontSize: 12 * DEVICE_WIDTH_RATIO,
marginLeft: 15 * DEVICE_WIDTH_RATIO,
},
... ... @@ -173,7 +174,7 @@ let styles = StyleSheet.create({
height: 20 * DEVICE_WIDTH_RATIO,
fontSize: 12 * DEVICE_WIDTH_RATIO,
padding: 0,
marginTop: Platform.OS === 'ios' ? 16 * DEVICE_WIDTH_RATIO : 0,
marginTop: 0,
},
touchContainer:{
width: 20* DEVICE_WIDTH_RATIO,
... ... @@ -193,8 +194,8 @@ let styles = StyleSheet.create({
borderWidth: 0.5,
borderRadius: 14 * DEVICE_WIDTH_RATIO,
textAlign: 'center',
lineHeight: Math.ceil(20 * DEVICE_WIDTH_RATIO),
marginTop: 8 * DEVICE_WIDTH_RATIO,
lineHeight: 28 * DEVICE_WIDTH_RATIO,
marginTop: 0,
fontSize: 12 * DEVICE_WIDTH_RATIO,
},
});
... ...