Spotify Req Fix.

This commit is contained in:
shabinder 2021-02-14 05:29:58 +05:30
parent 1ac83b63f2
commit 5ceb58e6de
3 changed files with 8 additions and 11 deletions

View File

@ -36,7 +36,6 @@ fun SpotiFlyerMainContent(component: SpotiFlyerMain){
val model by component.models.collectAsState(SpotiFlyerMain.State())
Column {
SearchPanel(
model.link,
component::onInputLinkChanged,

View File

@ -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
)

View File

@ -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 {