We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 748898a commit 3d5776cCopy full SHA for 3d5776c
android/src/main/AndroidManifest.xml
@@ -24,7 +24,8 @@
24
25
<activity
26
android:name="com.yalantis.ucrop.UCropActivity"
27
- android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
+ android:theme="@style/UCropTheme"
28
+ android:exported="false" />
29
30
31
<!-- Prompt Google Play services to install the backported photo picker module -->
android/src/main/res/values/styles.xml
@@ -0,0 +1,8 @@
1
+<resources>
2
+ <style name="UCropTheme" parent="Theme.AppCompat.Light.NoActionBar">
3
+ <item name="android:windowIsFloating">true</item>
4
+ <item name="android:windowMinWidthMajor">100%</item>
5
+ <item name="android:windowMinWidthMinor">100%</item>
6
+ <item name="android:windowContentOverlay">@null</item>
7
+ </style>
8
+</resources>
0 commit comments