Hi,
I’m building an app with Ionic, but the Android version doesn’t look like the iOS version.
For exemple, on Android, the tab controller have a grey line between the tab controller and the content, but not on iOS.
An other exemple, the title in the head is not well vertically-centred on Android.
So is there any tip to say to ionic : “I want the Android version looks like the iOS version” ?
Thanks and sorry for my bad english, I’m french
Actually you have to customize your style and scss for android render to be as same as IOS version.
some times you have to set some force style in app.js. for example when you want to show the tabs in button in both device you have to add
$ionicConfigProvider.tabs.position('bottom');
to your app.js
if you want to title be in center, add this
$ionicConfigProvider.navBar.alignTitle('center')