Package-level declarations

Types

Link copied to clipboard
class JetpackAppState(val isUserLoggedIn: Boolean, val userProfilePictureUri: String?, val windowSizeClass: WindowSizeClass, val crashReporter: CrashReporter, coroutineScope: CoroutineScope, networkUtils: NetworkUtils)

App-wide state that is not navigation.

Functions

Link copied to clipboard
fun JetpackApp(appState: JetpackAppState, modifier: Modifier = Modifier, windowAdaptiveInfo: WindowAdaptiveInfo = currentWindowAdaptiveInfo())

Root of the app UI.

Link copied to clipboard
fun rememberJetpackAppState(isUserLoggedIn: Boolean, windowSizeClass: WindowSizeClass, networkUtils: NetworkUtils, crashReporter: CrashReporter, userProfilePictureUri: String? = null, coroutineScope: CoroutineScope = rememberCoroutineScope()): JetpackAppState

Remembers a JetpackAppState.