common: replace material with material3 where possible

This commit is contained in:
Harsh Shandilya 2022-06-19 17:54:43 +05:30
parent 5cc0315bfb
commit 1d02f56025
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
6 changed files with 9 additions and 6 deletions

View file

@ -4,8 +4,6 @@ import androidx.compose.animation.ExperimentalAnimationApi
import androidx.compose.foundation.layout.navigationBarsPadding
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.rememberLazyListState
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.ArrowBack
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
@ -129,7 +127,7 @@ fun LobstersApp(
if (navItems.none { it.route == currentDestination }) {
IconButton(onClick = { navController.popBackStack() }) {
Icon(
imageVector = Icons.Filled.ArrowBack,
painter = ClawIcons.ArrowBack,
contentDescription = "Go back to previous screen",
)
}