Skip to content

Commit

Permalink
Merge pull request #22 from Project-Unifest/feature/home-screen-calendar
Browse files Browse the repository at this point in the history
[feat] [#20] Home 화면 Calendar 라이브러리 연동
  • Loading branch information
easyhooon authored Mar 27, 2024
2 parents 10d5a4b + ad23f7f commit a309584
Show file tree
Hide file tree
Showing 11 changed files with 551 additions and 20 deletions.
9 changes: 9 additions & 0 deletions core/designsystem/src/main/res/drawable/ic_chevron_left.xml
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="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M15.41,7.41L14,6l-6,6 6,6 1.41,-1.41L10.83,12z"/>
</vector>
9 changes: 9 additions & 0 deletions core/designsystem/src/main/res/drawable/ic_chevron_right.xml
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="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M10,6L8.59,7.41 13.17,12l-4.58,4.59L10,18l6,-6z"/>
</vector>
6 changes: 5 additions & 1 deletion core/designsystem/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@
<color name="teal_700">#FF018786</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
</resources>

<color name="colorPrimaryDark">#303F9F</color>
<color name="example_1_selection_color">#FCCA3E</color>
<color name="inactive_text_color">#BEBEBE</color>
</resources>
3 changes: 3 additions & 0 deletions core/designsystem/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
<string name="network_error_message">네트워크 연결이 불안해요.\n잠시후 다시 이용해주세요.</string>
<string name="server_error_message">이용에 불편을 드려 죄송합니다.\n잠시후 다시 이용해주세요.</string>
<string name="unknown_error_message">알 수 없는 오류가 발생하였습니다.</string>

<!-- home-->
<string name="week_mode">Week mode</string>
</resources>
1 change: 1 addition & 0 deletions feature/home/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ dependencies {
libs.kotlinx.collections.immutable,
libs.androidx.core,
libs.timber,
libs.calendar.compose,
)
}
Loading

0 comments on commit a309584

Please sign in to comment.