Inverted order
This commit is contained in:
parent
6df1094b96
commit
ba3d0c4d30
|
@ -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)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue