Skip to content

Commit

Permalink
Refactor: Update Assistant screen icon in Navigation Drawer
Browse files Browse the repository at this point in the history
Replaced the home icon with the sparkles icon for the Assistant screen in the Navigation Drawer.

This change provides
 a more appropriate visual representation for the Assistant screen.
  • Loading branch information
youndon committed Dec 14, 2024
1 parent f9906fc commit 9c84dc6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ import city.zouitel.systemDesign.CommonIcons.INTERROGATION_ICON
import city.zouitel.systemDesign.CommonIcons.REMOVE_ICON
import city.zouitel.systemDesign.CommonIcons.SETTINGS_ICON
import city.zouitel.systemDesign.CommonIcons.SHARE_ICON
import city.zouitel.systemDesign.CommonIcons.SPARKLES_ICON
import city.zouitel.systemDesign.CommonIcons.TAGS_ICON
import city.zouitel.systemDesign.DataStoreScreenModel
import city.zouitel.tags.ui.TagScreenModel
Expand Down Expand Up @@ -120,7 +121,7 @@ fun NavigationDrawer(
item {
NavigationDrawerItem(
label = { Text(text = ASSISTANT_SCREEN.screen, fontSize = TITLE_SIZE.sp) },
icon = { Icon(painterResource(HOME_ICON), null) },
icon = { Icon(painterResource(SPARKLES_ICON), null) },
selected = currentScreen.value == ASSISTANT_SCREEN,
onClick = {
scope.launch {
Expand Down

0 comments on commit 9c84dc6

Please sign in to comment.