28 lines
999 B
XML
28 lines
999 B
XML
|
|
<?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"
|
||
|
|
android:background="@drawable/bg_radial_overlay"
|
||
|
|
android:fitsSystemWindows="true">
|
||
|
|
|
||
|
|
<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>
|