LoadingScreenOptions

data class LoadingScreenOptions(val isVisible: Boolean = false, val message: String = "Loading...", val progress: Int? = null, val showLogo: Boolean = true, val logoUrl: String = "", val backgroundColor: Int = 0xFFFFFFFF.toInt(), val spinnerColor: Int = 0xFF2196F3.toInt(), val textColor: Int = 0xFF000000.toInt())

LoadingScreen - Full-screen loading state with progress indicator.

Displays loading spinner with optional message and progress percentage.

Constructors

Link copied to clipboard
constructor(isVisible: Boolean = false, message: String = "Loading...", progress: Int? = null, showLogo: Boolean = true, logoUrl: String = "", backgroundColor: Int = 0xFFFFFFFF.toInt(), spinnerColor: Int = 0xFF2196F3.toInt(), textColor: Int = 0xFF000000.toInt())

Properties

Link copied to clipboard
Link copied to clipboard
val isVisible: Boolean = false
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val progress: Int? = null
Link copied to clipboard
val showLogo: Boolean = true
Link copied to clipboard
Link copied to clipboard