Skip to content

Commit

Permalink
fix(popup): popup design 수정
Browse files Browse the repository at this point in the history
kez-lab committed Jan 31, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 044e9af commit df4b5c1
Showing 6 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/shape_background_radius100"
android:background="@drawable/shape_gray7_radius10"
android:paddingHorizontal="16dp"
android:paddingTop="36dp"
android:paddingBottom="24dp">
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/shape_background_radius100"
android:background="@drawable/shape_gray7_radius10"
android:paddingHorizontal="16dp"
android:paddingTop="36dp"
android:paddingBottom="24dp">
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/gray7" />
<corners android:radius="10dp" />

</shape>
Original file line number Diff line number Diff line change
@@ -342,7 +342,7 @@ class ChallengeFragment : Fragment() {
TwoButtonCommonDialog.newInstance(
title = getString(R.string.delete_app_dialog_title, clickedAppNameToDialog),
description = getString(R.string.delete_app_dialog_description),
confirmButtonText = getString(R.string.all_okay),
confirmButtonText = getString(R.string.all_delete),
dismissButtonText = getString(R.string.all_cancel),
).apply {
setConfirmButtonClickListener {
2 changes: 1 addition & 1 deletion feature/main/src/main/res/layout/item_banner.xml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="12dp"
app:background="@drawable/shape_background_radius100"
app:background="@drawable/shape_background_radius100_alpha0"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"

0 comments on commit df4b5c1

Please sign in to comment.