Skip to content

Commit 37bb62c

Browse files
committed
init
1 parent 5f49728 commit 37bb62c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

client/src/commonMain/kotlin/scene/MainScene.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ class MainScene : Scene() {
3232
override suspend fun SContainer.sceneMain() {
3333
sceneContainer.container {
3434
text(getKoin().get<String>(named("version")), textSize = 15f) {
35-
positionY(sceneContainer.height - height)
36-
positionX(5)
35+
val padding = 5
36+
positionY(padding + sceneContainer.height - height)
37+
positionX(padding)
3738
}.zIndex(100)
3839
zIndex(100)
3940
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
server=$server
2-
version=Test Build
2+
version=$version

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ kotlin.mpp.stability.nowarn=true
33
#org.gradle.unsafe.configuration-cache=true
44
kotlin.mpp.androidSourceSetLayoutVersion1.nowarn=true
55
server=http://localhost:8080
6+
version=Test Build

0 commit comments

Comments
 (0)