diff --git a/composeApp/src/commonMain/kotlin/mg/dot/feufaro/ui/SimpleDrawerContent.kt b/composeApp/src/commonMain/kotlin/mg/dot/feufaro/ui/SimpleDrawerContent.kt index ceb1b5b..29cb813 100644 --- a/composeApp/src/commonMain/kotlin/mg/dot/feufaro/ui/SimpleDrawerContent.kt +++ b/composeApp/src/commonMain/kotlin/mg/dot/feufaro/ui/SimpleDrawerContent.kt @@ -25,8 +25,10 @@ import androidx.compose.ui.draw.rotate import androidx.compose.ui.draw.scale import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.vector.ImageVector +import androidx.compose.ui.text.TextStyle import androidx.compose.ui.text.font.FontWeight import androidx.compose.ui.unit.dp +import androidx.compose.ui.unit.sp import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.launch import mg.dot.feufaro.data.DrawerItem @@ -133,6 +135,9 @@ fun SimpleDrawerContent( items(internalList) { item -> val isSelected = item.path == activePath NavigationDrawerItem( + icon = { + Text("\uD834\uDD1E", fontSize = 18.sp) + }, label = { DrawerItemLabel(item, sharedScreenModel) }, selected = isSelected, onClick = { @@ -167,6 +172,9 @@ fun SimpleDrawerContent( val isSelected = item.path == activePath if (item.path != "") { NavigationDrawerItem( + icon = { + Text("♬", fontSize = 18.sp) + }, label = { DrawerItemLabel(item, sharedScreenModel) }, selected = isSelected, onClick = {