Reputation: 21
As I know, we can do some responsiveness with the web app to make it look nicer on mobile devices.
However, looking into notion.so app. The UI of the app on tablet and mobile browser is completely different from the desktop version, it's not just responsive.
For example, when we resize the app on desktop, it just narrows down the width and height without changing any UI to look like on mobile.
My question is how can I do like that with my angular app?
Upvotes: 0
Views: 950
Reputation: 709
What you want is responsive design, I recommend looking into bootstrap for that. By settings responsive breakpoints
you can decide on the structure of your app depending on the window's width / height
If you want an angular solution you can look into flex-layout: it is the angular way of doing it and also has a responsive breakpoints
solution
It is difficult to implement though but start small and work your way from there, good luck !
Upvotes: 3
Reputation: 1242
Angular is just a javascript framework used to build web apps.
Only installed apps on mobiles are supposed to have native look (they should look like ios app on ios and like android on android devices).
This can be achieved using hybrid frameworks like ionic. I suggest you check it out.
Upvotes: 1