30 lines
565 B
TypeScript
30 lines
565 B
TypeScript
import {StyleSheet} from 'react-native';
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
padding: 20,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
title:{
|
|
fontSize: 24,
|
|
fontWeight: "bold",
|
|
marginBottom: 20,
|
|
},
|
|
input: {
|
|
width: "80%",
|
|
borderWidth: 1,
|
|
borderColor: "#ccc",
|
|
padding: 10,
|
|
marginBottom: 20,
|
|
borderRadius: 5,
|
|
backgroundColor: "#ff00ff"
|
|
},
|
|
text: {
|
|
fontSize: 18,
|
|
marginBottom: 20,
|
|
},
|
|
});
|
|
|
|
export default styles; |