/* * Copyright (C) 2022-2024. Maximilian Keppeler (https://www.maxkeppeler.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ @file:OptIn(ExperimentalMaterial3Api::class) package com.mk.sheets.compose.samples import androidx.compose.material3.ExperimentalMaterial3Api import androidx.compose.runtime.Composable import com.maxkeppeker.sheets.core.models.base.IconSource import com.maxkeppeker.sheets.core.models.base.rememberUseCaseState import com.maxkeppeler.sheets.list.ListDialog import com.maxkeppeler.sheets.list.models.ListOption import com.maxkeppeler.sheets.list.models.ListSelection import com.mk.sheets.compose.R @Composable internal fun ListSample1(closeSelection: () -> Unit) { val options = listOf( ListOption( IconSource(R.drawable.ic_fruit_apple), titleText = "Apple" ), ListOption( IconSource(R.drawable.ic_fruit_watermelon), titleText = "Watermelon", ), ListOption( IconSource(R.drawable.ic_fruit_grapes), titleText = "Grapes", selected = true ), ListOption( IconSource(R.drawable.ic_fruit_pineapple), titleText = "Pineapple", ), ) ListDialog( state = rememberUseCaseState(visible = true, onCloseRequest = { closeSelection() }), selection = ListSelection.Single( showRadioButtons = true, options = options ) { index, option -> // Handle selection } ) }