Fixed Scrolling issues in Swipe Actions (#7374)

This commit is contained in:
Mudit Choudhary 2024-09-03 01:42:26 +05:30 committed by GitHub
parent 13c2e1b3a1
commit 1528cde0e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 8 deletions

View File

@ -1,10 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.gridlayout.widget.GridLayout
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:grid="http://schemas.android.com/apk/res-auto"
android:id="@+id/pickerGridLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
grid:columnCount="2"
grid:alignmentMode="alignBounds" />
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<androidx.gridlayout.widget.GridLayout
android:id="@+id/pickerGridLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
app:columnCount="2"
app:alignmentMode="alignBounds" />
</ScrollView>