layout of tab comes top in android what is the solution for this???
this is the native-like behaviour for android app
what we do now for this
i want it in bottom …
Then use CSS… It isnt that hard
This is the default styling for android apps
ionic allows you to easily change this using $ionicConfigProvider
simply inject it into your module.config and use it to change the default behaviors. exp:
app.config(['$ionicConfigProvider',
function ($ionicConfigProvider ) {
$ionicConfigProvider.tabs.style("standard");
$ionicConfigProvider.tabs.position('bottom');
//to target specific platform you can also
//$ionicConfigProvider.platform.android.tabs.position('bottom');
}
]);
yup thanku it works fine