-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 홈화면(공모목록) UI 추가 구현 및 상태 변경 대응 (#142)
* feat: 공모의 상태 변경이 반영되도록 기능 구현 * feat: 공모 목록 ui변경 * feat: 필터 ui추가 * feat: API변경에 따른 DTO수정 * style: lint적용 * feat: resource추가 * refactor: ui위치 수정 * chore: 불필요한 괄호 제거 * refactor: item 수직 정렬
- Loading branch information
Showing
18 changed files
with
272 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<corners android:radius="10dp" /> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/bg_main_main_color_10dp" android:state_checked="true" /> | ||
<item android:drawable="@drawable/bg_main_gray_color_10dp" android:state_checked="false" /> | ||
</selector> |
8 changes: 8 additions & 0 deletions
8
android/app/src/main/res/drawable/bg_main_gray_color_10dp.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:id="@+id/listview_background_shape"> | ||
<corners android:radius="10dp" /> | ||
<stroke | ||
android:width="0.5dp" | ||
android:color="@color/gray_300" /> | ||
</shape> |
8 changes: 8 additions & 0 deletions
8
android/app/src/main/res/drawable/bg_main_main_color_10dp.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:id="@+id/listview_background_shape"> | ||
<corners android:radius="10dp" /> | ||
<stroke | ||
android:width="0.5dp" | ||
android:color="@color/main_color" /> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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_main_checked_circle" android:state_checked="true" /> | ||
<item android:drawable="@drawable/ic_main_unchecked_circle" android:state_checked="false" /> | ||
</selector> |
12 changes: 12 additions & 0 deletions
12
android/app/src/main/res/drawable/ic_main_checked_circle.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="12dp" | ||
android:height="12dp" | ||
android:viewportWidth="12" | ||
android:viewportHeight="12"> | ||
<path | ||
android:pathData="M6,6m-6,0a6,6 0,1 1,12 0a6,6 0,1 1,-12 0" | ||
android:fillColor="#F15642"/> | ||
<path | ||
android:pathData="M4.924,7.169L8.099,3.729C8.197,3.622 8.323,3.569 8.475,3.569C8.628,3.569 8.753,3.622 8.852,3.729C8.951,3.836 9,3.972 9,4.137C9,4.302 8.951,4.438 8.852,4.545L5.3,8.394C5.193,8.51 5.067,8.569 4.924,8.569C4.78,8.569 4.655,8.51 4.547,8.394L3.148,6.878C3.049,6.771 3,6.635 3,6.469C3,6.304 3.049,6.168 3.148,6.061C3.247,5.954 3.372,5.901 3.525,5.901C3.677,5.901 3.803,5.954 3.901,6.061L4.924,7.169Z" | ||
android:fillColor="#FEFEFE"/> | ||
</vector> |
14 changes: 14 additions & 0 deletions
14
android/app/src/main/res/drawable/ic_main_unchecked_circle.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="12dp" | ||
android:height="12dp" | ||
android:viewportWidth="12" | ||
android:viewportHeight="12"> | ||
<path | ||
android:pathData="M4.924,7.169L8.099,3.729C8.197,3.622 8.323,3.569 8.475,3.569C8.628,3.569 8.753,3.622 8.852,3.729C8.951,3.836 9,3.972 9,4.137C9,4.302 8.951,4.438 8.852,4.545L5.3,8.394C5.193,8.51 5.067,8.569 4.924,8.569C4.78,8.569 4.655,8.51 4.547,8.394L3.148,6.878C3.049,6.771 3,6.635 3,6.469C3,6.304 3.049,6.168 3.148,6.061C3.247,5.954 3.372,5.901 3.525,5.901C3.677,5.901 3.803,5.954 3.901,6.061L4.924,7.169Z" | ||
android:fillColor="#D9D9D9"/> | ||
<path | ||
android:strokeWidth="1" | ||
android:pathData="M11.5,6C11.5,9.038 9.038,11.5 6,11.5C2.962,11.5 0.5,9.038 0.5,6C0.5,2.962 2.962,0.5 6,0.5C9.038,0.5 11.5,2.962 11.5,6Z" | ||
android:fillColor="#00000000" | ||
android:strokeColor="#D9D9D9"/> | ||
</vector> |
25 changes: 11 additions & 14 deletions
25
android/app/src/main/res/drawable/img_main_product_default.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.