You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jetpack Compose provides a declarative way to define UI components and encourages the use of immutable state. You can manage state within a composable function using the remember and mutableStateOf functions. These functions allow you to create and update state variables that automatically trigger recomposition when their values change.
Basic calculator app to practice Android development best practices. See the compose branch for a version of the app UI written entirely in Jetpack Compose.
Android Jetpack Compose is a modern UI toolkit for building native Android apps using a declarative approach. It simplifies UI development, provides a reactive programming model, and offers powerful customization capabilities.
The latest architecture & technologies used in this project. Such as Jetpack Compose (JC), a modern UI development toolkit, Model-View-ViewModel (MVVM) software design pattern, Dependency Injection - Hilt, Navigation, Room, Retrofit. etc... Kotlin language
Android Jetpack Compose app to create cards for the Conjure trading card game. Creates the card data and QR codes used in the public facing Conjure Dex. All rights reserved.
ViewModel is a part of the Android Architecture Components library. It's designed to store and manage UI-related data in a lifecycle-conscious way, allowing data to survive configuration changes such as screen rotations.