Skip to content

Commit

Permalink
Merge branch 'develop' into feat-search-view
Browse files Browse the repository at this point in the history
  • Loading branch information
jihyunniiii committed May 21, 2024
2 parents 972fc25 + 980450a commit 28133eb
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/src/main/res/drawable/shape_tab_indicator_rect_2.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<size android:height="2dp" />
</shape>
17 changes: 17 additions & 0 deletions app/src/main/res/layout/indicator_tab_kream.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<com.google.android.material.tabs.TabLayout
android:id="@+id/tab_kream_indicator"
android:layout_width="match_parent"
android:layout_height="2dp"
app:tabBackground="@color/gray04"
app:tabIndicator="@drawable/shape_tab_indicator_rect_2"
app:tabIndicatorAnimationMode="linear"
app:tabIndicatorColor="@color/black01"
app:tabIndicatorFullWidth="true" />

</FrameLayout>

0 comments on commit 28133eb

Please sign in to comment.