I'd like to customize the FirebaseUI style for the login activity.
I used a bit of this github.
So far so good but I'd like to take off the shadow below the action bar.
I tried taking off the elevation but still showing up.
<style name="LoginTheme" parent="FirebaseUI">
<item name="android:textColorPrimary">@android:color/black</item>
<item name="colorPrimary">#FFFFFF</item>
<item name="colorPrimaryDark">#FFFFFF</item>
<item name="colorAccent">#000000</item>
<item name="elevation">0dp</item>
</style>
Any recommendation is very welcome.
Thanks!