-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to change the background color of the Google Alert view #9
Comments
This comes from system, maybe can theming help you. |
The case is that I don't want to change the theme of the whole app, I just want to change the theme of this popup. Thanks |
If we can pass theme attribute to this module, the same as titanium did for Windows component where you can define a specific theme for it in Android. |
you can modify theme of a single activity. Please google to inform how can you style the GoogleLogin stuff native |
Someone know where to start? It would be nice if that was easy to setup |
You just need to assign a |
Okay, this was too simple. Here you go: <activity
android:name="com.google.android.gms.auth.api.signin.internal.SignInHubActivity"
android:excludeFromRecents="true"
android:exported="false"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden|adjustPan"
android:theme="@android:style/Theme.Translucent.NoTitleBar" /> Also included in my refactoring PR (#32). 🚀 |
Most of the apps nowadays, show Google authentication popup, for which the background color is transparent and not gray as in this module.
Thanks, for this great module.
The text was updated successfully, but these errors were encountered: