Skip to content

Commit

Permalink
Merge pull request #28 from YAPP-Github/chore/tgyuu/PC-000
Browse files Browse the repository at this point in the history
[PC-000] 약관 상세 화면 웹뷰가 렌더링 되기 이전 TopBar가 가려지던 것 해결
  • Loading branch information
tgyuuAn authored Jan 9, 2025
2 parents abeb37a + ffd0c84 commit 8a396f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
defaultConfig {
versionCode = 1
versionName = "1.0.0"
targetSdk = 34
targetSdk = 35

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand All @@ -21,8 +21,6 @@ android {
buildConfigField("String", "KAKAO_APP_KEY", "\"${localProperties["KAKAO_APP_KEY"]}\"")
}

packaging { resources { excludes += "/META-INF/*" } }

buildTypes {
release {
signingConfig = signingConfigs.getByName("debug")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ internal fun Project.configureKotlinAndroid() {
// add("implementation", libs.findLibrary("firebase-analytics").get())
// add("implementation", libs.findLibrary("firebase-crashlytics").get())
// }

packaging { resources.excludes.add("META-INF/*") }
}

configureKotlin()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clipToBounds
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.unit.dp
import com.puzzle.designsystem.R
Expand Down Expand Up @@ -37,7 +38,8 @@ internal fun RegistrationDetailScreen(
url = term.content,
modifier = Modifier
.fillMaxWidth()
.weight(1f),
.weight(1f)
.clipToBounds(),
)

PieceSolidButton(
Expand Down

0 comments on commit 8a396f4

Please sign in to comment.