Add and improve domain (WIP)
This commit is contained in:
14
composeApp/src/commonMain/kotlin/ui/selector.kt
Normal file
14
composeApp/src/commonMain/kotlin/ui/selector.kt
Normal file
@@ -0,0 +1,14 @@
|
||||
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) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user