14 lines
365 B
Kotlin
14 lines
365 B
Kotlin
package ui
|
|
|
|
import androidx.compose.material3.OutlinedCard
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.ui.Modifier
|
|
import domain.Item
|
|
import domain.ItemCategory
|
|
|
|
@Composable
|
|
fun Selector(modifier: Modifier = Modifier, category: ItemCategory, selectedItem: Item, onSelectItem: (Item) -> Unit) {
|
|
OutlinedCard(modifier = modifier) {
|
|
|
|
}
|
|
} |