Search code examples
flutterflutter-layoutflutter-web

How to change chrome header color in Flutter Web?


The default color for this header at the top with the link URL is blue, does anyone know how to change the color of it ?

enter image description here


Solution

  • Put this meta tag between "head" tag in index.html file.

    <meta name="theme-color" content="#393557">
    

    It will change your mobile browser's top menu color.