skip to Main Content

How can I customize the tab name and icon in browser tab for flutter app.
please check the imageenter image description here

3

Answers


  1. You need to edit title tag in your index.html which will be available inside web folder.

    For Example :

    <title>Your App Name</title>
    
    Login or Signup to reply.
  2. Can you try this?

    return MaterialApp(
      title: 'AppName',
      onGenerateTitle: (context) => 'AppName',
      // ...
    );
    
    Login or Signup to reply.
  3. Title widget also works well including on mobile browser minimized tab.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search