Skip to content

Commit

Permalink
[ui] #242 목표 확인 카드 디자인 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
sxunea committed Feb 19, 2024
1 parent 8501b42 commit 7a3d51b
Show file tree
Hide file tree
Showing 5 changed files with 206 additions and 46 deletions.
18 changes: 18 additions & 0 deletions app/src/main/res/drawable/ic_mypage_checked.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="12dp"
android:height="11dp"
android:viewportWidth="12"
android:viewportHeight="11">
<path
android:strokeWidth="1"
android:pathData="M6,10.5C8.761,10.5 11,8.261 11,5.5C11,2.739 8.761,0.5 6,0.5C3.239,0.5 1,2.739 1,5.5C1,8.261 3.239,10.5 6,10.5Z"
android:fillColor="#00000000"
android:strokeColor="#7C26FA"/>
<path
android:strokeWidth="1"
android:pathData="M8.799,3.729L5.255,7.273L3.199,5.301"
android:strokeLineJoin="round"
android:fillColor="#00000000"
android:strokeColor="#7C26FA"
android:strokeLineCap="round"/>
</vector>
18 changes: 18 additions & 0 deletions app/src/main/res/drawable/ic_mypage_unchecked.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="12dp"
android:height="11dp"
android:viewportWidth="12"
android:viewportHeight="11">
<path
android:strokeWidth="1"
android:pathData="M6,10.5C8.761,10.5 11,8.261 11,5.5C11,2.739 8.761,0.5 6,0.5C3.239,0.5 1,2.739 1,5.5C1,8.261 3.239,10.5 6,10.5Z"
android:fillColor="#00000000"
android:strokeColor="#97A2AF"/>
<path
android:strokeWidth="1"
android:pathData="M8.799,3.729L5.255,7.273L3.199,5.301"
android:strokeLineJoin="round"
android:fillColor="#00000000"
android:strokeColor="#97A2AF"
android:strokeLineCap="round"/>
</vector>
Original file line number Diff line number Diff line change
@@ -1,10 +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/gray_0" />
<stroke
android:width="1dp"
android:color="@color/gray_200" />
<corners
android:radius="16dp" />
<corners android:radius="8dp" />
</shape>
7 changes: 7 additions & 0 deletions app/src/main/res/drawable/shape_gray50_fill_14_rect.xml
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/gray_50" />
<corners
android:radius="14dp" />
</shape>
Loading

0 comments on commit 7a3d51b

Please sign in to comment.