123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import variable from "./../variables/platform";
- export default (variables = variable) => {
- const platform = variables.platform;
- const segmentTheme = {
- height: 45,
- borderColor: variables.segmentBorderColorMain,
- flexDirection: "row",
- justifyContent: "center",
- backgroundColor: variables.segmentBackgroundColor,
- "NativeBase.Button": {
- alignSelf: "center",
- borderRadius: 0,
- paddingHorizontal: 20,
- height: 30,
- backgroundColor: "transparent",
- borderWidth: 1,
- borderColor: variables.segmentBorderColor,
- elevation: 0,
- ".active": {
- backgroundColor: variables.segmentActiveBackgroundColor,
- "NativeBase.Text": {
- color: variables.segmentActiveTextColor
- }
- },
- ".first": {
- borderTopLeftRadius: platform === "ios" ? 5 : undefined,
- borderBottomLeftRadius: platform === "ios" ? 5 : undefined,
- borderRightWidth: 0
- },
- ".last": {
- borderTopRightRadius: platform === "ios" ? 5 : undefined,
- borderBottomRightRadius: platform === "ios" ? 5 : undefined,
- borderLeftWidth: 0
- },
- "NativeBase.Text": {
- color: variables.segmentTextColor,
- fontSize: 14
- }
- }
- };
- return segmentTheme;
- };
|