Skip to content

Commit

Permalink
Downgrade Compose to 1.5.11
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechOsak committed Mar 28, 2024
1 parent 4bd18ae commit f86c4ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]

kotlin = "1.9.21"
compose = "1.6.1"
compose = "1.5.11"
agp = "8.2.2"
androidx-appcompat = "1.6.1"
androidx-activityCompose = "1.8.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package io.wojciechosak.calendar.calendar
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.padding
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.automirrored.filled.ArrowBackIos
import androidx.compose.material.icons.filled.ArrowBack
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
Expand Down Expand Up @@ -48,7 +48,7 @@ internal fun App() {
onClick = { navigator.pop() },
) {
Icon(
imageVector = Icons.AutoMirrored.Filled.ArrowBackIos,
imageVector = Icons.Filled.ArrowBack,
contentDescription = "Back",
tint = Color.White,
)
Expand Down

0 comments on commit f86c4ec

Please sign in to comment.