Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
GrakovNe committed Nov 21, 2024
1 parent bc42dc2 commit 239a812
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions app/src/main/java/org/grakovne/lissen/widget/PlayerWidget.kt
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,10 @@ class PlayerWidget : GlanceAppWidget() {
horizontalAlignment = Alignment.CenterHorizontally
) {
Row(
modifier = GlanceModifier.fillMaxWidth().padding(bottom = 16.dp),
verticalAlignment = Alignment.CenterVertically
verticalAlignment = Alignment.CenterVertically,
modifier = GlanceModifier
.fillMaxWidth()
.padding(bottom = 16.dp)
) {
val cover = maybeCover
?: decodeResource(context.resources, drawable.cover_fallback_png)
Expand Down Expand Up @@ -134,7 +136,7 @@ class PlayerWidget : GlanceAppWidget() {

Row(
modifier = GlanceModifier
.padding(top = 12.dp)
.padding(top = 16.dp)
.wrapContentWidth(),
verticalAlignment = Alignment.CenterVertically
) {
Expand Down

0 comments on commit 239a812

Please sign in to comment.