habitica-android/Habitica/res/layout/bottom_sheet_wrapper.xml

26 lines
1.1 KiB
XML
Raw Permalink Normal View History

2022-04-22 09:32:58 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<View
android:id="@+id/grabber"
android:layout_width="24dp"
android:layout_height="3dp"
android:background="@drawable/layout_rounded_bg"
android:backgroundTint="@color/offset_background"
android:layout_marginTop="@dimen/spacing_medium"
android:layout_marginBottom="@dimen/spacing_large"
2022-04-22 09:32:58 +00:00
android:layout_gravity="center_horizontal"
/>
2025-03-05 09:38:37 +00:00
<com.habitrpg.android.habitica.ui.views.HabiticaScrollView
2025-01-30 10:29:45 +00:00
android:id="@+id/nested_scroll_view"
2022-05-20 09:08:45 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
2025-03-05 09:38:37 +00:00
</com.habitrpg.android.habitica.ui.views.HabiticaScrollView>
2025-01-30 10:29:45 +00:00
</LinearLayout>