I have this problem White screen is displayed while switching between Activities
When I try to send an email using Xamarin.Essentials.Email.ComposeAsync I get a white screen. This method is inside a Fragment rather than an Activity class so I can't use android:name
on the <activity>
element.
I want to know if I can implement the style on my current Manifest.xml file
<queries>
<intent> //add android:theme="@style/MyTheme" somewhere here???
<action android:name="android.intent.action.SENDTO" />
<data android:scheme="mailto" />
</intent>
</queries>