Compare commits

..
2 Commits
Author SHA1 Message Date
omni ff64f431f6 update: updated versions 2026-06-17 09:48:53 +03:00
omni 50b2a965b4 fix: fixed paddings 2026-06-17 09:25:49 +03:00
5 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ android {
minSdk = 30
targetSdk = 36
versionCode = generateVersionCode()
versionName = "2.5.1"
versionName = "2.5.2"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Binary file not shown.
Binary file not shown.
@@ -47,6 +47,7 @@ fun Page(name: String, innerPadding: PaddingValues, content: @Composable () -> U
.fillMaxSize()
.padding(horizontal = 16.dp)
.background(MaterialTheme.colorScheme.background)
.padding(top = 16.dp)
) {
content()
}
@@ -114,7 +114,7 @@ fun MainPage(
innerPadding
) {
Column(
modifier = Modifier.verticalScroll(rememberScrollState()).padding(bottom = 64.dp).background(Color.Transparent).padding(top = 16.dp),
modifier = Modifier.verticalScroll(rememberScrollState()).padding(bottom = 64.dp).background(Color.Transparent),
verticalArrangement = Arrangement.spacedBy(8.dp)
) {
if (cards.isEmpty()) {