File tree 6 files changed +8
-16
lines changed
shared/src/commonMain/kotlin/me/sujanpoudel/playdeals/common
6 files changed +8
-16
lines changed Original file line number Diff line number Diff line change 12
12
  ;
13
13
14
14
![ Static Badge] ( https://img.shields.io/badge/License-GPL--v3-brightgreen )
15
- [ ![ Lint and verify ] ( https://github.com/psuzn/App-deals /actions/workflows/lint .yaml/badge.svg?branch=develop )] ( https://github.com/psuzn/App-deals /actions/workflows/lint .yaml )
15
+ [ ![ CI ] ( https://github.com/psuzn/Play-Deals /actions/workflows/CI .yaml/badge.svg )] ( https://github.com/psuzn/Play-Deals /actions/workflows/CI .yaml )
16
16
17
17
![ Feature] ( metadata/en-US/images/featureGraphic.png )
18
18
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ android {
44
44
targetCompatibility = JavaVersion .VERSION_17
45
45
}
46
46
47
+ composeOptions {
48
+ kotlinCompilerExtensionVersion = libs.versions.compose.compiler.get()
49
+ }
47
50
48
51
signingConfigs {
49
52
getByName(" debug" ) {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ sqldelight = "2.0.0"
11
11
google-services = " 4.4.0"
12
12
13
13
# Libraries
14
- compose-compiler = " 1.5.7 "
14
+ compose-compiler = " 1.5.6 "
15
15
accompanist-permissions = " 0.32.0"
16
16
activity-compose = " 1.8.2"
17
17
appcompat = " 1.6.1"
Original file line number Diff line number Diff line change 1
- Finden Sie die neuesten App-Angebote und Rabatte für kostenpflichtige Apps und Spiele .
1
+ Finden Sie die neuesten App-Angebote und Rabatte für kostenpflichtige Apps.
Original file line number Diff line number Diff line change @@ -2,12 +2,6 @@ package me.sujanpoudel.playdeals.common
2
2
3
3
import androidx.compose.foundation.background
4
4
import androidx.compose.foundation.layout.Box
5
- import androidx.compose.foundation.layout.WindowInsets
6
- import androidx.compose.foundation.layout.navigationBars
7
- import androidx.compose.foundation.layout.statusBars
8
- import androidx.compose.foundation.layout.systemBars
9
- import androidx.compose.foundation.layout.union
10
- import androidx.compose.foundation.layout.windowInsetsPadding
11
5
import androidx.compose.material3.MaterialTheme
12
6
import androidx.compose.runtime.Composable
13
7
import androidx.compose.runtime.CompositionLocalProvider
@@ -97,12 +91,7 @@ fun PlayDealsApp() {
97
91
AppTheme (preferences) {
98
92
Box (
99
93
modifier = Modifier
100
- .background(MaterialTheme .colorScheme.background)
101
- .windowInsetsPadding(
102
- WindowInsets .navigationBars
103
- .union(WindowInsets .statusBars)
104
- .union(WindowInsets .systemBars),
105
- ),
94
+ .background(MaterialTheme .colorScheme.background),
106
95
) {
107
96
NavHost (navGraph)
108
97
}
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ object ScaffoldToolbar {
82
82
) {
83
83
val navigator = Navigator .current
84
84
CenterAlignedTopAppBar (
85
- modifier = modifier.windowInsetsPadding(WindowInsets (top = 10 .dp)),
85
+ modifier = modifier.windowInsetsPadding(WindowInsets (top = 20 .dp)),
86
86
title = { ToolbarTitle (title) },
87
87
navigationIcon =
88
88
{
You can’t perform that action at this time.
0 commit comments