Hey! đź‘‹
I have an app for Android purely in Compose and I’m in the middle of migrating it to Compose Multiplatform.
The migration to iOS is quite simple since the mapping is 1:1 in terms of screens and components.
But I want to make also the web app. There will be some major design changes, as it is expected since the web will include several mobile screens in the same screen. For the sake of naming, I’m calling them `Component`s.
The question is, how do approach this kind of project in terms of architecture? Some small components may be identical in the mobile and the web version but others will be different. Also, is it OK for a single web screen to aggregate several components with their “ViewModels”? And, finally, there are some really small differences like the usage of
imePadding
that make sense in some platform but not in others.
I’d like to get your opinion on the matter!
Many thanks