Skip to content

Commit

Permalink
[fix]: Fix Navigation Resource
Browse files Browse the repository at this point in the history
  • Loading branch information
kez-lab committed Jan 2, 2024
1 parent f0fa07e commit d50d83d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 0 additions & 1 deletion core/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,5 @@ android {
}

dependencies {
implementation(libs.fragment.ktx)
implementation(libs.retrofit)
}
5 changes: 5 additions & 0 deletions feature/main/src/main/res/drawable/ic_android_black_24dp.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<vector android:height="24dp" android:tint="#000000"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M17.6,11.48 L19.44,8.3a0.63,0.63 0,0 0,-1.09 -0.63l-1.88,3.24a11.43,11.43 0,0 0,-8.94 0L5.65,7.67a0.63,0.63 0,0 0,-1.09 0.63L6.4,11.48A10.81,10.81 0,0 0,1 20L23,20A10.81,10.81 0,0 0,17.6 11.48ZM7,17.25A1.25,1.25 0,1 1,8.25 16,1.25 1.25,0 0,1 7,17.25ZM17,17.25A1.25,1.25 0,1 1,18.25 16,1.25 1.25,0 0,1 17,17.25Z"/>
</vector>
6 changes: 3 additions & 3 deletions feature/main/src/main/res/menu/bottom_nav_menu.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/challenge_dest"
android:icon="@color/material_dynamic_neutral0"
android:icon="@drawable/ic_android_black_24dp"
android:title="@string/challenge" />
<item
android:id="@+id/home_dest"
android:icon="@color/material_dynamic_neutral0"
android:icon="@drawable/ic_android_black_24dp"
android:title="@string/home" />
<item
android:id="@+id/my_page_dest"
android:icon="@color/material_dynamic_neutral0"
android:icon="@drawable/ic_android_black_24dp"
android:title="@string/my_page" />
</menu>

0 comments on commit d50d83d

Please sign in to comment.