This commit is contained in:
2026-02-10 19:24:00 +08:00
parent cc6a4443ee
commit c42d89d585
4 changed files with 2 additions and 2 deletions

45
styles.ts Normal file
View File

@@ -0,0 +1,45 @@
import { StyleSheet } from 'react-native';
export const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "center",
alignItems: "center",
},
button: {
padding: 10,
backgroundColor: "lightblue",
borderRadius: 5,
width: 200,
height: 55,
},
text: {
fontSize: 20,
fontWeight: "bold",
},
modal: {
flex: 1,
justifyContent: "center",
alignItems: "center",
},
modalContent: {
flex: 1,
justifyContent: "center",
alignItems: "center",
},
bindButton: {
marginTop: 10,
marginBottom: 10,
backgroundColor: "#007AFF",
borderRadius: 5,
width: "90%",
height: 45,
alignItems: "center",
justifyContent: "center",
},
bindButtonText: {
fontSize: 14,
// fontWeight: "bold",
color: "#fff",
},
});