33 lines
583 B
TypeScript
33 lines
583 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
export const recordStyles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
padding: 20,
|
|
},
|
|
headerText: {
|
|
fontSize: 22,
|
|
fontWeight: "500",
|
|
paddingBottom: "10%",
|
|
},
|
|
buttonContainer: {
|
|
marginTop: 10,
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
width: "100%",
|
|
},
|
|
buttonStyle: {
|
|
backgroundColor: "lightblue",
|
|
paddingVertical: 10,
|
|
paddingHorizontal: 20,
|
|
borderRadius: 20,
|
|
margin: 10,
|
|
},
|
|
buttonText: {
|
|
color: "white",
|
|
textAlign: "center",
|
|
},
|
|
});
|