Always expand text label on bar buttons (#30)

* Replace dropdown popup with fullscreen dialog

* Always expand text label on bar buttons
This commit is contained in:
timklge 2025-03-20 17:21:25 +01:00 committed by GitHub
parent cbcf5aee8b
commit 82fd48a896
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -277,7 +277,7 @@ fun MainScreen(onFinish: () -> Unit) {
}) {
Icon(Icons.Default.Build, contentDescription = "Select", modifier = Modifier.size(20.dp))
Spacer(modifier = Modifier.width(5.dp))
Text("Bottom Bar: ${bottomSelectedSource.label}")
Text("Bottom Bar: ${bottomSelectedSource.label}", modifier = Modifier.weight(1.0f))
}
if (bottomBarDialogVisible){
@ -296,7 +296,7 @@ fun MainScreen(onFinish: () -> Unit) {
}) {
Icon(Icons.Default.Build, contentDescription = "Select", modifier = Modifier.size(20.dp))
Spacer(modifier = Modifier.width(5.dp))
Text("Top Bar: ${topSelectedSource.label}")
Text("Top Bar: ${topSelectedSource.label}", modifier = Modifier.weight(1.0f))
}
if (topBarDialogVisible){