Inverted order

This commit is contained in:
dankito 2024-09-17 22:51:28 +02:00
parent 6df1094b96
commit ba3d0c4d30
1 changed files with 7 additions and 7 deletions

View File

@ -55,13 +55,7 @@ fun ExportScreen(onClosed: () -> Unit) {
}
}
if (isLoadingExportedData == false) {
Column(Modifier.verticalScroll(ScrollState(0), enabled = true).horizontalScroll(ScrollState(0), enabled = true)) {
SelectionContainer {
Text(exportedDataText, fontFamily = FontFamily.Monospace)
}
}
} else {
if (isLoadingExportedData) {
Column(Modifier.fillMaxSize()) {
Spacer(Modifier.weight(1f))
@ -71,6 +65,12 @@ fun ExportScreen(onClosed: () -> Unit) {
Spacer(Modifier.weight(1f))
}
} else {
Column(Modifier.verticalScroll(ScrollState(0), enabled = true).horizontalScroll(ScrollState(0), enabled = true)) {
SelectionContainer {
Text(exportedDataText, fontFamily = FontFamily.Monospace)
}
}
}
}
}