mirror of
https://github.com/shaulascr/ecommerce_serang.git
synced 2025-12-16 16:01:02 +00:00
32 lines
1.4 KiB
XML
32 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/sells"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".ui.profile.mystore.sells.SellsFragment">
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/tab_layout_sells"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:tabMode="scrollable"
|
|
app:tabTextAppearance="@style/label_medium_prominent"
|
|
app:tabSelectedTextAppearance="@style/label_medium_prominent"
|
|
app:tabIndicatorColor="@color/blue_500"
|
|
app:tabSelectedTextColor="@color/blue_500"
|
|
app:tabTextColor="@color/black_300"
|
|
app:tabBackground="@color/white"
|
|
app:tabPadding="13dp"
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
android:id="@+id/view_pager_sells"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/tab_layout_sells" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |