Skip to content

Commit

Permalink
fix: maximize headline area width
Browse files Browse the repository at this point in the history
  • Loading branch information
Yamada-Ika committed Jul 9, 2024
1 parent c7bf478 commit 5858751
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import androidx.compose.foundation.border
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
Expand Down Expand Up @@ -37,7 +38,8 @@ fun TimeTableItemDetailHeadline(
modifier = modifier
// FIXME: Implement and use a theme color instead of fixed colors like RoomColors.primary and RoomColors.primaryDim
.background(Color(0xFF132417))
.padding(8.dp),
.padding(8.dp)
.fillMaxWidth(),
) {
Row {
TagView(
Expand Down

0 comments on commit 5858751

Please sign in to comment.