Skip to content

Commit

Permalink
[ADD/#23] signup 내부 바텀시트에 필요한 drawable 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
etama123 committed May 8, 2023
1 parent fbc73ad commit 3137e51
Show file tree
Hide file tree
Showing 7 changed files with 81 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app/src/main/res/drawable/ic_signup_check_fill.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="28dp"
android:height="28dp"
android:viewportWidth="28"
android:viewportHeight="28">
<path
android:pathData="M8,13.08L12.5,17.58L20,10.08"
android:strokeLineJoin="round"
android:strokeWidth="2.3"
android:fillColor="#00000000"
android:strokeColor="#000000"
android:strokeLineCap="round"/>
</vector>
18 changes: 18 additions & 0 deletions app/src/main/res/drawable/ic_signup_close.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="14dp"
android:height="15dp"
android:viewportWidth="14"
android:viewportHeight="15">
<path
android:pathData="M1.107,1.687C1.407,1.987 9.232,9.812 13.107,13.686"
android:strokeWidth="1.40099"
android:fillColor="#00000000"
android:strokeColor="#000000"
android:strokeLineCap="round"/>
<path
android:pathData="M13.107,1.687C12.807,1.987 4.982,9.812 1.107,13.686"
android:strokeWidth="1.40099"
android:fillColor="#00000000"
android:strokeColor="#000000"
android:strokeLineCap="round"/>
</vector>
16 changes: 16 additions & 0 deletions app/src/main/res/drawable/ic_signup_terms_total_check.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="25dp"
android:height="25dp"
android:viewportWidth="25"
android:viewportHeight="25">
<path
android:pathData="M12.5,12.5m-12.5,0a12.5,12.5 0,1 1,25 0a12.5,12.5 0,1 1,-25 0"
android:fillColor="#D6D6D6"/>
<path
android:pathData="M7.143,11.607L11.161,15.625L17.857,8.929"
android:strokeLineJoin="round"
android:strokeWidth="2.10687"
android:fillColor="#00000000"
android:strokeColor="#ffffff"
android:strokeLineCap="round"/>
</vector>
16 changes: 16 additions & 0 deletions app/src/main/res/drawable/ic_signup_terms_total_check_fill.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="25dp"
android:height="25dp"
android:viewportWidth="25"
android:viewportHeight="25">
<path
android:pathData="M12.5,12.5m-12.5,0a12.5,12.5 0,1 1,25 0a12.5,12.5 0,1 1,-25 0"
android:fillColor="#000000"/>
<path
android:pathData="M7.143,11.607L11.161,15.625L17.857,8.929"
android:strokeLineJoin="round"
android:strokeWidth="2.10687"
android:fillColor="#00000000"
android:strokeColor="#ffffff"
android:strokeLineCap="round"/>
</vector>
5 changes: 5 additions & 0 deletions app/src/main/res/drawable/sel_signup_term_check.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/ic_signup_check" android:state_selected="false" />
<item android:drawable="@drawable/ic_signup_check_fill" android:state_selected="true" />
</selector>
5 changes: 5 additions & 0 deletions app/src/main/res/drawable/sel_signup_term_total_check.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/ic_signup_terms_total_check" android:state_selected="false" />
<item android:drawable="@drawable/ic_signup_terms_total_check_fill" android:state_selected="true" />
</selector>
8 changes: 8 additions & 0 deletions app/src/main/res/drawable/shape_gray050_fill_top19_rect.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/gray050" />
<corners
android:topLeftRadius="19dp"
android:topRightRadius="19dp"/>
</shape>

0 comments on commit 3137e51

Please sign in to comment.