How can I customize the tab name and icon in browser tab for flutter app. please check the image
3
You need to edit title tag in your index.html which will be available inside web folder.
For Example :
<title>Your App Name</title>
Can you try this?
return MaterialApp( title: 'AppName', onGenerateTitle: (context) => 'AppName', // ... );
Title widget also works well including on mobile browser minimized tab.
Click here to cancel reply.
3
Answers
You need to edit title tag in your index.html which will be available inside web folder.
For Example :
Can you try this?
Title widget also works well including on mobile browser minimized tab.