Well, my doubt is simple: why ios are 320px wide and android are 360px wide.
Is it possible to have a wider app?
You can make a wider app by using custom css styling, but your phone’s screen size won’t grow any bigger. iOS devices simply have applied 320 css pixels to it’s screen. If you were to make your app bigger then the screen size, some awkward scrolling of the app would be the consequence. Instead, you could create a larger pane which has x-scrolling enabled in ionic, which would make the app fit in your screen and make the pane content scrollable.
For using the scrolling content, please refer to http://ionicframework.com/docs/api/directive/ionScroll/
1 Like
Ok… I think I just got it