1234567891011121314151617181920212223242526 |
- import { Platform } from "react-native";
- import variable from "./../variables/platform";
- export default (variables = variable) => {
- const radioTheme = {
- ".selected": {
- "NativeBase.IconNB": {
- color: Platform.OS === "ios"
- ? variables.brandPrimary
- : variables.radioSelectedColorAndroid,
- lineHeight: Platform.OS === "ios" ? 25 : variables.radioBtnLineHeight,
- height: Platform.OS === "ios" ? 20 : undefined
- }
- },
- "NativeBase.IconNB": {
- color: Platform.OS === "ios" ? "transparent" : undefined,
- lineHeight: Platform.OS === "ios"
- ? undefined
- : variables.radioBtnLineHeight,
- fontSize: Platform.OS === "ios" ? undefined : variables.radioBtnSize
- }
- };
- return radioTheme;
- };
|