-
Notifications
You must be signed in to change notification settings - Fork 0
Description
So, Jetpack Compose, clearly, makes the front-end development much more consistent and faster. As a person who doesn't really like front-end dev., Jetpack Compose makes it easier for me to not overload myself with useless thinking of how XML/XAML (depending on what you are using, Kotling/JavaFX) works.
However, the main issue that I have right now is repeatability.
Since Jetpack Compose allows development of UI using purely Kotlin + Annotations, we now have a problem with code repeatability which I have to solve somehow.
The whole weatherApp is basically constructed on graphs... You have Temperature/Precipitation/Wind, UV-Index, Dew-Point, Pressure, Humidity and all other graphs which can show you the forecast (Weekly/Daily/Hourly). The problem in re-usability of those graphs. The logic for a graph that I have "can" potentially be use in other graphs... however I need to decouple it somehow first.