Zipline-Android-App/styles/components/switch.ts

23 lines
401 B
TypeScript

import { StyleSheet } from "react-native";
export const styles = StyleSheet.create({
switchContainer: {
flexDirection: "row",
marginTop: 10,
width: "85%",
},
switchText: {
color: "white",
fontSize: 16,
marginLeft: 5,
fontWeight: "bold",
textAlignVertical: "center",
},
switchDescription: {
color: "#6c7a8d",
marginLeft: 5,
},
switchTextDisabled: {
color: "gray",
},
});