-
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: 날짜, 시간 선택 기능 구현, 주소검색 기능 연결 (#171)
* refactor: 뷰모델 팩토리를 뷰모델의 companion object에서 구현하는 방식으로 변경 * feat: 모집마감 시간 클릭 시 date time picker를 띄우는 기능 구현 * feat: 날짜, 시간 선택 기능 구현 * feat: 주소 검색 기능 연결 * refactor: 함수명 수정, 함수분리 * refactor: ktFormat 적용 * refactor: string으로 분리, 상수화 * fix: string 수정 * chore: CI workflow 파일 수정 * chore: CI workflow 파일 수정 * chore: CI workflow 파일 수정3 * chore: CI workflow 파일 수정4 * feat: 공모가 정상적으로 게시되었을 시 "공모가 게시되었어요!" 라는 토스트를 띄우고 공모글 작성 프래그먼트를 종료하는 기능 구현 * feat: 토스트가 화면 중앙에 뜨는 문제 수정 * refactor: 사용되지 않는 파일 삭제 * refactor: xml 뷰 id 수정 * refactor: 버튼이 TextView인 문제 수정 * refactor: 사용되지 않는 data binding variable 제거 * refactor: 함수명 수정 * refactor: 다이얼로그, dateTimePickerBinding 전역으로 선언 * refactor: dateTimePicker 클릭 이벤트를 추상화 해 xml에서 처리하도록 변경 * refactor: ktFormat
- Loading branch information
1 parent
4cbd3b1
commit 47d0bea
Showing
14 changed files
with
365 additions
and
25 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
7 changes: 7 additions & 0 deletions
7
.../src/main/java/com/zzang/chongdae/presentation/view/write/OnOfferingWriteClickListener.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.zzang.chongdae.presentation.view.write | ||
|
||
interface OnOfferingWriteClickListener { | ||
fun onDateTimeSubmitButtonClick() | ||
|
||
fun onDateTimeCancelButtonClick() | ||
} |
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"> | ||
<corners android:radius="24dp" /> | ||
<solid android:color="@color/white"/> | ||
</shape> |
6 changes: 6 additions & 0 deletions
6
android/app/src/main/res/drawable/bg_date_time_picker_selected.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"> | ||
<corners android:radius="12dp" /> | ||
<solid android:color="#8FEDEDED"/> | ||
</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,13 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="8dp" | ||
android:height="14dp" | ||
android:viewportWidth="8" | ||
android:viewportHeight="14"> | ||
<path | ||
android:pathData="M7,13L1,7L7,1" | ||
android:strokeLineJoin="round" | ||
android:strokeWidth="2" | ||
android:fillColor="#00000000" | ||
android:strokeColor="#7B7B7B" | ||
android:strokeLineCap="round"/> | ||
</vector> |
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,13 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="8dp" | ||
android:height="14dp" | ||
android:viewportWidth="8" | ||
android:viewportHeight="14"> | ||
<path | ||
android:pathData="M1,13L7,7L1,1" | ||
android:strokeLineJoin="round" | ||
android:strokeWidth="2" | ||
android:fillColor="#00000000" | ||
android:strokeColor="#7B7B7B" | ||
android:strokeLineCap="round"/> | ||
</vector> |
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"> | ||
<corners android:radius="6dp" /> | ||
<solid android:color="@color/gray_300"/> | ||
</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
Oops, something went wrong.