The app i’m working has a style that needs to look the same on Ios as android.
So I styled the tabs on my browser and it looks great!
But when I deployed it to my actual device al the styles where gone and were resetted to the default colors/borders/background-colors.The styled header bar remained intact but my tabs don’t look that great anymore
is there a way to get the same styles on browser/ios/android?
and if there isn’t how can i style the android tabs?
Hey again, like you said i created a custom theme and switched from css to sass,
it now looks great on browsers, and Ios
but it the android tabs are still being overwritten by some css somewhere and can’t find the cause of the problem,
do you by any chance know where i should look for the problem?
i tried _variables.scss and changed them but it had no effect, i also tried it at _tabs.scss and the changes still won’t effect the tabs on my android device,
the rest of the style works fine on android and ios so that’s solved
hi … the solution is very simple … if you want your styles are not changed with the styles by default, do this
angular.module (‘yourapp’, [‘ionic’])
. run (function ($ ionicTabsConfig) {
/ / Default to ios tab-style bar on android too
$ ionicTabsConfig.type =’’;
});