Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Commit

Permalink
Fix plates screen launch
Browse files Browse the repository at this point in the history
  • Loading branch information
AnkitSuda committed Nov 27, 2022
1 parent 1171aeb commit 59a2b2a
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
package com.ankitsuda.rebound.ui.customizeplates

import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
Expand Down Expand Up @@ -70,6 +71,10 @@ fun CustomizePlatesScreen(
viewModel.deletePlate(id)
}
)
} ?: run {
Box(modifier = Modifier
.fillMaxSize()
.background(ReboundTheme.colors.background))
}
}

Expand Down

0 comments on commit 59a2b2a

Please sign in to comment.