diff --git a/common/compose-ui/src/commonMain/kotlin/com/shabinder/common/main/SpotiFlyerMainUi.kt b/common/compose-ui/src/commonMain/kotlin/com/shabinder/common/main/SpotiFlyerMainUi.kt index 35146168..54b677cb 100644 --- a/common/compose-ui/src/commonMain/kotlin/com/shabinder/common/main/SpotiFlyerMainUi.kt +++ b/common/compose-ui/src/commonMain/kotlin/com/shabinder/common/main/SpotiFlyerMainUi.kt @@ -36,7 +36,6 @@ fun SpotiFlyerMainContent(component: SpotiFlyerMain){ val model by component.models.collectAsState(SpotiFlyerMain.State()) Column { - SearchPanel( model.link, component::onInputLinkChanged, diff --git a/common/compose-ui/src/commonMain/kotlin/com/shabinder/common/root/SpotiFlyerRootUi.kt b/common/compose-ui/src/commonMain/kotlin/com/shabinder/common/root/SpotiFlyerRootUi.kt index 16676bd6..439d3864 100644 --- a/common/compose-ui/src/commonMain/kotlin/com/shabinder/common/root/SpotiFlyerRootUi.kt +++ b/common/compose-ui/src/commonMain/kotlin/com/shabinder/common/root/SpotiFlyerRootUi.kt @@ -4,9 +4,9 @@ import androidx.compose.animation.core.* import androidx.compose.animation.core.Spring.StiffnessLow import androidx.compose.foundation.Image import androidx.compose.foundation.layout.* -import androidx.compose.material.MaterialTheme -import androidx.compose.material.Text -import androidx.compose.material.TopAppBar +import androidx.compose.material.* +import androidx.compose.material.icons.Icons +import androidx.compose.material.icons.filled.Settings import androidx.compose.runtime.* import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier @@ -108,15 +108,13 @@ fun AppBar( ) } }, - /*actions = { - Providers(AmbientContentAlpha provides ContentAlpha.medium) { + actions = { IconButton( - onClick = { *//* TODO: Open Preferences*//* } + onClick = { /*TODO: Open Preferences*/ } ) { - Icon(Icons.Filled.Settings, tint = Color.Gray) + Icon(Icons.Filled.Settings,"Preferences", tint = Color.Gray) } - } - },*/ + }, modifier = modifier, elevation = 0.dp ) diff --git a/common/dependency-injection/src/commonMain/kotlin/com/shabinder/common/di/spotify/SpotifyRequests.kt b/common/dependency-injection/src/commonMain/kotlin/com/shabinder/common/di/spotify/SpotifyRequests.kt index 7c078364..a561303c 100644 --- a/common/dependency-injection/src/commonMain/kotlin/com/shabinder/common/di/spotify/SpotifyRequests.kt +++ b/common/dependency-injection/src/commonMain/kotlin/com/shabinder/common/di/spotify/SpotifyRequests.kt @@ -7,7 +7,7 @@ import com.shabinder.common.models.spotify.Track import io.ktor.client.* import io.ktor.client.request.* -private const val BASE_URL = "https://api.spotify.com/v1/" +private const val BASE_URL = "https://api.spotify.com/v1" interface SpotifyRequests {