2025-11-26 02:30:03 +00:00
|
|
|
<?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"
|
2025-11-26 03:23:00 +00:00
|
|
|
android:background="@android:color/transparent"
|
|
|
|
|
android:fitsSystemWindows="false">
|
2025-11-26 02:30:03 +00:00
|
|
|
|
|
|
|
|
<eightbitlab.com.blurview.BlurTarget
|
|
|
|
|
android:id="@+id/blurTarget"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
<androidx.compose.ui.platform.ComposeView
|
|
|
|
|
android:id="@+id/composeView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
</eightbitlab.com.blurview.BlurTarget>
|
|
|
|
|
|
|
|
|
|
<eightbitlab.com.blurview.BlurView
|
|
|
|
|
android:id="@+id/blurView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="top"
|
|
|
|
|
app:blurOverlayColor="@color/glassOverlay" />
|
|
|
|
|
|
|
|
|
|
</FrameLayout>
|