i would say this is due to android themening
Normaly a app looks diffrent in Android then on ios.
If im right Ionic looks up user agent found that you are running Android and injects this css classes to body:
platform-android, platform-android4, platform-android4_0
on ios it injects this classes:
platform-ipad, platform-ios, platform-ios6, platform-ios6_0
classes are depending on each platform like ipad/iphone os etc.
atm i dont have a solution to force ionic to use ios style on all platforms.
Hey there! So the different look on ios and android is to help make the apps feel more at home to their native platform.
While you can theme your app to use certain colors and such, there are platform specific features that can reveal the app is not native. So we wanted to avoid that.
With many people not sure how to write their scss for this, I created this gist, which would be if you need to make a custom color for every component. Hope this helps!
Is this feature documented somewhere? Is there a list of visual differences for android/ios?
I implemented this myself when using beta8 - checked platform and according to the platform I put tabs on top (android) or at the bottom (ios). Is this still needed or it is now done automagically?