-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ui: display 폰트 타입 및 drawable 추가 * ui: 짝꿍 페이지 리뉴얼 * ui: 짝꿍이 없을 때 화면 분리 * ui: 최종레벨 달성시 화면 구현 * fix: 중복된 문자열 삭제
- Loading branch information
1 parent
3361ebd
commit b40555e
Showing
8 changed files
with
275 additions
and
153 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
core-design-system/src/main/res/drawable/bg_rect_green50_r10.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,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle"> | ||
<solid android:color="@color/green_50" /> | ||
<corners android:radius="10dp" /> | ||
</shape> |
8 changes: 8 additions & 0 deletions
8
core-design-system/src/main/res/drawable/bg_rect_white_r15.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:shape="rectangle"> | ||
|
||
<solid android:color="@color/white" /> | ||
<corners android:radius="15dp" /> | ||
|
||
</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
7 changes: 7 additions & 0 deletions
7
presentation/mate/src/main/java/com/depromeet/threedays/mate/nomate/NoMateFragment.kt
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,7 @@ | ||
package com.depromeet.threedays.mate.nomate | ||
|
||
import androidx.fragment.app.Fragment | ||
|
||
class NoMateFragment : Fragment() { | ||
|
||
} |
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,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="22dp" | ||
android:viewportWidth="24" | ||
android:viewportHeight="22"> | ||
<path | ||
android:pathData="M14.591,19.558C13.434,21.542 10.566,21.542 9.409,19.558L0.632,4.512C-0.535,2.512 0.908,0 3.223,0L20.777,0C23.092,0 24.535,2.512 23.368,4.512L14.591,19.558Z" | ||
android:fillColor="#ffffff"/> | ||
</vector> |
313 changes: 164 additions & 149 deletions
313
presentation/mate/src/main/res/layout/fragment_mate.xml
Large diffs are not rendered by default.
Oops, something went wrong.
54 changes: 54 additions & 0 deletions
54
presentation/mate/src/main/res/layout/fragment_no_mate.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,54 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
tools:context=".nomate.NoMateFragment"> | ||
|
||
<androidx.constraintlayout.widget.Guideline | ||
android:id="@+id/gl_top_of_30_percent" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:orientation="horizontal" | ||
app:layout_constraintGuide_percent="0.3"/> | ||
|
||
<TextView | ||
android:id="@+id/tv_illustration" | ||
android:layout_width="180dp" | ||
android:layout_height="180dp" | ||
android:background="@color/gray_200" | ||
android:gravity="center" | ||
android:text="일러스트로 대체될 영역" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toTopOf="@+id/gl_top_of_30_percent" /> | ||
|
||
<TextView | ||
android:id="@+id/tv_create_mate_guide" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="24dp" | ||
android:text="@string/create_mate_guide" | ||
android:textAppearance="@style/Typography.Paragraph3.13dp" | ||
android:textColor="@color/gray_500" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toBottomOf="@+id/tv_illustration" /> | ||
|
||
<androidx.appcompat.widget.AppCompatButton | ||
android:id="@+id/btn_create_mate" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="24dp" | ||
android:background="@drawable/bg_rect_gray800_r30" | ||
android:gravity="center" | ||
android:paddingHorizontal="44dp" | ||
android:paddingVertical="14dp" | ||
android:text="@string/create_mate" | ||
android:textAppearance="@style/Typography.Button1" | ||
android:textColor="@color/white" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toBottomOf="@+id/tv_create_mate_guide" /> | ||
</androidx.constraintlayout.widget.ConstraintLayout> |
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