Home > database >  flutter I want remove top my project name
flutter I want remove top my project name

Time:12-11

gs://myfirstapp-7a6cb.appspot.com/sounds/2021-12-11 122222.png

gs://myfirstapp-7a6cb.appspot.com/2021-12-11 144811.png

I upgraded flutter latest version

but suddenly showing is my project name(my_projct_first2) on the top

How can I remove this?

thanks in advance

CodePudding user response:

What I know from the image is, thats an AppBar, you can remove it by delete this part on Scaffold

 appBar: AppBar(
    title: Center(child: Text("Your Title)),
 ),

CodePudding user response:

If you have used an appbar for the same. You can try with below code snippet.

appBar: AppBar(
title:Text(""),
),
  • Related