Skip to content

Instantly share code, notes, and snippets.

@bostrot
Created June 24, 2018 12:03
Show Gist options
  • Save bostrot/d46b75dd1880a05b5f5f4a7021483bb6 to your computer and use it in GitHub Desktop.
Save bostrot/d46b75dd1880a05b5f5f4a7021483bb6 to your computer and use it in GitHub Desktop.
Custom MapView AppBar color Android
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
Flutter draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">#3f51b5</item>
<item name="colorPrimaryDark">#3f51b5</item>
<item name="colorAccent">#3f51b5</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment