Skip to content

Commit e5d2c79

Browse files
committed
修改
2 parents 3e747cf + 435fc6a commit e5d2c79

File tree

5 files changed

+397
-49
lines changed

5 files changed

+397
-49
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,4 @@ npm-debug.log
4141
buck-out/
4242
\.buckd/
4343
android/app/libs
44-
android/keystores/debug.keystore
45-
44+
android/keystores/debug.keystore

node_modules/react-native-swipeout/index.js

Lines changed: 305 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/containers/android/CustomButton.js

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ class CustomButton extends React.Component {
1515
return (
1616
<TouchableHighlight
1717
style={styles.button}
18-
underlayColor="#a5a5a5"
18+
underlineColorAndroid='transparent'
1919
onPress={this.props.onPress}>
20-
<Text style={styles.buttonText}>{this.props.text}</Text>
20+
<Text style={styles.dateT}>{this.props.text}</Text>
2121
</TouchableHighlight>
2222
);
2323
}
@@ -69,10 +69,13 @@ const styles = StyleSheet.create({
6969
},
7070
button: {
7171
margin:5,
72-
backgroundColor: 'white',
73-
padding: 15,
74-
borderBottomWidth: StyleSheet.hairlineWidth,
75-
borderBottomColor: '#cdcdcd',
72+
padding: 7,
73+
height:30,
74+
width:240,
75+
alignSelf: 'center'
76+
},
77+
dateT:{
78+
color:"#FFFFFF"
7679
}
7780
});
7881

0 commit comments

Comments
 (0)