Skip to content

Commit

Permalink
💄 Make OSS libs a bit better-looking (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
jheubuch authored Aug 24, 2023
1 parent 77f8c20 commit 9ae51b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/src/main/kotlin/de/hbch/traewelling/ui/info/Info.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import androidx.compose.foundation.layout.fillMaxHeight
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.ArrowBack
import androidx.compose.material.icons.outlined.ArrowBack
Expand All @@ -22,6 +23,7 @@ import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
Expand Down Expand Up @@ -71,7 +73,7 @@ fun InfoScreen(
)
}
LibrariesContainer(
modifier = Modifier.fillMaxSize()
modifier = Modifier.fillMaxSize().clip(RoundedCornerShape(16.dp))
)
}
}
Expand Down

0 comments on commit 9ae51b9

Please sign in to comment.