Package-level declarations

Overview

About page with application information, credits, and version details.

Responsibilities

  • Displaying application information

  • Showing credits and acknowledgments

  • Providing version and build information

Types

Link copied to clipboard
class AboutPageViewModel(val globalError: ReversiException? = null, val setGlobalError: (Exception?, ErrorType?) -> Unit) : ViewModel<AboutUiState>

ViewModel for the about page screen. Manages about page state and error handling.

Link copied to clipboard
data class AboutUiState(val screenState: ScreenState = ScreenState()) : UiState

UI state for the about page screen.

Functions

Link copied to clipboard
@Composable
fun ReversiScope.AboutPage(viewModel: AboutPageViewModel, modifier: Modifier = Modifier, onLeave: () -> Unit)

Simple about page presenting project and authorship information.

Link copied to clipboard