Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
imashnake0 committed Feb 18, 2024
1 parent ee07631 commit cc08e08
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import com.ramcosta.composedestinations.spec.DestinationSpec
import com.ramcosta.composedestinations.utils.currentDestinationAsState
import com.ramcosta.composedestinations.utils.isRouteOnBackStack
import com.ramcosta.composedestinations.utils.startDestination
import com.imashnake.animite.R as Res
import com.imashnake.animite.R
import com.imashnake.animite.core.R as coreR

// TODO: Ripple where?
Expand Down Expand Up @@ -88,10 +88,10 @@ enum class NavigationBarPaths(
{
Icon(
imageVector = ImageVector.vectorResource(
id = Res.drawable.rslash
id = R.drawable.rslash
),
contentDescription = stringResource(
id = Res.string.rslash
id = R.string.rslash
)
)
}
Expand All @@ -101,10 +101,10 @@ enum class NavigationBarPaths(
{
Icon(
imageVector = ImageVector.vectorResource(
id = Res.drawable.home
id = R.drawable.home
),
contentDescription = stringResource(
id = Res.string.home
id = R.string.home
)
)
}
Expand All @@ -115,7 +115,7 @@ enum class NavigationBarPaths(
Icon(
imageVector = Icons.Rounded.AccountCircle,
contentDescription = stringResource(
id = Res.string.profile
id = R.string.profile
),
// TODO: Adding this modifier lets us control the icon's size;
// see how this works and unhardcode the dimensions.
Expand Down

0 comments on commit cc08e08

Please sign in to comment.