Skip to content

Commit 28d82c6

Browse files
committed
Fix clipped shadow
1 parent ec8758a commit 28d82c6

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

auth/src/main/res/layout/auth_method_picker_layout.xml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3-
android:orientation="vertical"
2+
<LinearLayout
3+
xmlns:android="http://schemas.android.com/apk/res/android"
44
android:layout_width="match_parent"
55
android:layout_height="match_parent"
6-
android:gravity="center|bottom">
6+
android:clipChildren="false"
7+
android:clipToPadding="false"
8+
android:gravity="center|bottom"
9+
android:orientation="vertical">
710

811
<LinearLayout
9-
android:gravity="center"
10-
android:layout_weight="1.0"
1112
android:layout_width="match_parent"
12-
android:layout_height="match_parent">
13+
android:layout_height="match_parent"
14+
android:layout_weight="1.0"
15+
android:gravity="center">
1316

1417
<ImageView
1518
android:id="@+id/logo"

0 commit comments

Comments
 (0)