Skip to content

Commit efd5ffa

Browse files
committed
[NDGL-62] chore: DatePickerScreen에 필요한 리소스 추가
1 parent 7221350 commit efd5ffa

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<vector xmlns:android="http://schemas.android.com/apk/res/android"
2+
android:width="24dp"
3+
android:height="24dp"
4+
android:viewportWidth="24"
5+
android:viewportHeight="24">
6+
<path
7+
android:pathData="M11.5,14.725L6.55,9.775H16.45L11.5,14.725Z"
8+
android:fillColor="#49454F"/>
9+
</vector>

core/ui/src/main/res/values/strings.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,13 @@
2828
<!-- Follow Travel -->
2929
<string name="follow_travel_button">내 여행에 저장</string>
3030

31+
<!-- Date Picker -->
32+
<string name="date_picker_title">여행 따라가기</string>
33+
<string name="date_picker_complete">완료</string>
34+
<string name="date_picker_modal_title">여행이 준비됐어요</string>
35+
<string name="date_picker_modal_body">이제 선택한 여행을\n그대로 따라갈 수 있어요.</string>
36+
<string name="date_picker_modal_negative">나중에</string>
37+
<string name="date_picker_modal_positive">여행 보러가기</string>
38+
<string name="date_picker_year_month_format">%1$d년 %2$d월</string>
39+
<string name="date_picker_error_insufficient">* 선택한 여행 기간이 따라가기 일정보다 짧아요.\n 기간을 넘는 일정은 지정되지 않습니다.</string>
3140
</resources>

feature/travel/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ dependencies {
1111
implementation(libs.maps.compose)
1212
implementation(libs.play.services.maps)
1313
implementation(libs.coil.compose)
14+
implementation(libs.kotlinx.datetime)
1415
}

gradle/libs.versions.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ retrofitKotlinxSerializationJson = "1.0.0"
2222

2323
# KotlinX
2424
kotlinxImmutable = "0.4.0"
25+
kotlinxDatetime = "0.6.1"
2526

2627
# Navigation
2728
navigationCompose = "2.9.6"
@@ -111,6 +112,7 @@ kotlin-bom = { group = "org.jetbrains.kotlin", name = "kotlin-bom", version.ref
111112

112113
# KotlinX
113114
kotlinx-immutable = { group = "org.jetbrains.kotlinx", name = "kotlinx-collections-immutable", version.ref = "kotlinxImmutable" }
115+
kotlinx-datetime = { group = "org.jetbrains.kotlinx", name = "kotlinx-datetime", version.ref = "kotlinxDatetime" }
114116

115117
# Firebase
116118
firebase-bom = { group = "com.google.firebase", name = "firebase-bom", version.ref = "firebaseBom" }

0 commit comments

Comments
 (0)