sfm-uikit-react-native
Version:
It is a react native component for SmartFloMeet users.
28 lines • 583 B
JavaScript
import { StyleSheet } from 'react-native';
const styles = StyleSheet.create({
container: {
flexDirection: "row",
borderWidth: 1,
borderColor: "#ccc",
borderRadius: 8,
overflow: "hidden",
},
segment: {
flex: 1,
padding: 10,
alignItems: "center",
backgroundColor: "#f0f0f0",
},
selectedSegment: {
backgroundColor: "#e60073",
},
segmentText: {
color: "#333",
fontSize: 16,
},
selectedSegmentText: {
color: "#fff",
fontWeight: "bold",
},
});
export { styles }