0

I have changed the name of my app and its all good. On my homeScreen or in settings it is shown fine, but when i press multitab, the one which shows all ur running apps on your phone i dont see my app name but my project name. Or at least i think its that. Here is a photo of my app icon in home screenicon And here is how is shown when multitab is openedmultitab

1 Answers1

0

Give your app name, or whatever title that you want, for the title parameter of MaterialApp().

Like this,

runApp(new MaterialApp(
    title: "title",
    home: FirstPage(),
  ));

This should solve your issue, do mark this as answer if it solves so that it helps others too..

srikanth7785
  • 1,382
  • 1
  • 7
  • 22
  • that worked thanks... i had like 4 different material apps because i have different roles , and i changed the title property in 2 of them but forgot in the others... anyway thanks bro. – Gentjan Shtjefni Jun 28 '21 at 07:01