feat: done vertical arrangement good
This commit is contained in:
parent
abbf8e2ecf
commit
ebf9714183
4 changed files with 8 additions and 6 deletions
|
@ -31,9 +31,9 @@ tasks.withType<KotlinCompile> {
|
||||||
|
|
||||||
compose.desktop {
|
compose.desktop {
|
||||||
application {
|
application {
|
||||||
mainClass = "MainKt"
|
mainClass = "xyz.atnrch.wrench.WrenchApp"
|
||||||
nativeDistributions {
|
nativeDistributions {
|
||||||
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
|
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.AppImage)
|
||||||
packageName = "Wrench"
|
packageName = "Wrench"
|
||||||
packageVersion = "1.0.0"
|
packageVersion = "1.0.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,6 @@ import androidx.compose.ui.text.TextStyle
|
||||||
import androidx.compose.ui.unit.ExperimentalUnitApi
|
import androidx.compose.ui.unit.ExperimentalUnitApi
|
||||||
import androidx.compose.ui.unit.TextUnit
|
import androidx.compose.ui.unit.TextUnit
|
||||||
import androidx.compose.ui.unit.TextUnitType
|
import androidx.compose.ui.unit.TextUnitType
|
||||||
import androidx.compose.ui.unit.dp
|
|
||||||
import xyz.atnrch.wrench.components.center.dialog.EntryDialog
|
import xyz.atnrch.wrench.components.center.dialog.EntryDialog
|
||||||
import xyz.atnrch.wrench.ui.Fonts
|
import xyz.atnrch.wrench.ui.Fonts
|
||||||
import xyz.atnrch.wrench.watcher.WatcherEntry
|
import xyz.atnrch.wrench.watcher.WatcherEntry
|
||||||
|
@ -31,7 +30,6 @@ fun WatcherTextEntry(entry: WatcherEntry) {
|
||||||
dialogState = true
|
dialogState = true
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
Spacer(Modifier.height(15.dp))
|
|
||||||
|
|
||||||
if (dialogState) {
|
if (dialogState) {
|
||||||
EntryDialog(onStateChange = { dialogState = it })
|
EntryDialog(onStateChange = { dialogState = it })
|
||||||
|
|
|
@ -26,7 +26,9 @@ fun InputEntries(
|
||||||
.border(BorderStroke(4.dp, UIColors.ORANGE), RectangleShape)
|
.border(BorderStroke(4.dp, UIColors.ORANGE), RectangleShape)
|
||||||
) {
|
) {
|
||||||
InputTopText()
|
InputTopText()
|
||||||
Column {
|
Column(
|
||||||
|
verticalArrangement = Arrangement.spacedBy(15.dp)
|
||||||
|
) {
|
||||||
watcherManager.getEntries().forEach {
|
watcherManager.getEntries().forEach {
|
||||||
WatcherTextEntry(it)
|
WatcherTextEntry(it)
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,7 +22,9 @@ fun OutputEntries() {
|
||||||
.border(BorderStroke(4.dp, UIColors.STRESS), RectangleShape)
|
.border(BorderStroke(4.dp, UIColors.STRESS), RectangleShape)
|
||||||
) {
|
) {
|
||||||
OutputTopText()
|
OutputTopText()
|
||||||
Column {
|
Column(
|
||||||
|
verticalArrangement = Arrangement.spacedBy(15.dp)
|
||||||
|
) {
|
||||||
for (i in 0..5) {
|
for (i in 0..5) {
|
||||||
DummyTextEntry()
|
DummyTextEntry()
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue