Authored by 于良

unexpected token '}' bug fix review by 阿瑟

... ... @@ -497,7 +497,6 @@ const styles = StyleSheet.create({
flex: 1,
fontSize:14,
textAlign: 'left',
paddingTop: 3,
color: '#b0b0b0',
height: 32,
paddingTop: 9,
... ... @@ -506,7 +505,6 @@ const styles = StyleSheet.create({
flex: 1,
fontSize:14,
textAlign: 'right',
paddingTop: 3,
color: '#b0b0b0',
paddingTop: 9,
height: 32,
... ...
... ... @@ -84,19 +84,16 @@ let navbarHeight = (Platform.OS === 'android') ? 50 : 64;
let containerHieght = Math.ceil((490 / 750) * width);
let styles = StyleSheet.create({
container: {
// flex:1,
height: containerHieght,
backgroundColor: 'transparent',
},
backgroundImage: {
// top: 0,
flex: 1,
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
height:containerHieght,
alignItems: 'center'
alignItems: 'center',
height:containerHieght,
},
avatarImage: {
... ... @@ -106,7 +103,7 @@ let styles = StyleSheet.create({
borderRadius: 37,
borderColor: 'white',
borderWidth: 1,
backgroundColor: 'white'
backgroundColor: 'white',
},
name: {
... ... @@ -114,7 +111,6 @@ let styles = StyleSheet.create({
textAlign: 'center',
margin: 15,
marginBottom:10,
// backgroundColor:'red',
fontSize: 14,
fontFamily: 'Helvetica Light',
},
... ... @@ -122,10 +118,8 @@ let styles = StyleSheet.create({
sign: {
color: 'white',
textAlign: 'center',
// margin: 15,
// backgroundColor:'red',
fontSize: 12,
fontFamily: 'Helvetica Light',
}
},
});
... ...