12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import variable from "./../variables/platform";
- export default (variables = variable) => {
- const tabBarTheme = {
- ".tabIcon": {
- height: undefined
- },
- ".vertical": {
- height: 60
- },
- "NativeBase.Button": {
- ".transparent": {
- "NativeBase.Text": {
- fontSize: variables.tabFontSize,
- color: variables.sTabBarActiveTextColor,
- fontWeight: "400"
- },
- "NativeBase.IconNB": {
- color: variables.sTabBarActiveTextColor
- }
- },
- "NativeBase.IconNB": {
- color: variables.sTabBarActiveTextColor
- },
- "NativeBase.Text": {
- fontSize: variables.tabFontSize,
- color: variables.sTabBarActiveTextColor,
- fontWeight: "400"
- },
- ".isTabActive": {
- "NativeBase.Text": {
- fontWeight: "900"
- }
- },
- flex: 1,
- alignSelf: "stretch",
- alignItems: "center",
- justifyContent: "center",
- borderRadius: null,
- borderBottomColor: "transparent",
- backgroundColor: variables.tabBgColor
- },
- height: 45,
- flexDirection: "row",
- justifyContent: "space-around",
- borderWidth: 1,
- borderTopWidth: 0,
- borderLeftWidth: 0,
- borderRightWidth: 0,
- borderBottomColor: "#ccc",
- backgroundColor: variables.tabBgColor
- };
- return tabBarTheme;
- };
|