Hi@akhtar,
You can use the Scaffold Widget to create an Appbar. The Scaffold is good enough to create a general-purpose AppBar. I have attached one example below for your reference. 
 var myappbar = AppBar(
    title: mytext,
    backgroundColor: Colors.amber,
  );
 var myhome = Scaffold(
    appBar: myappbar,
    backgroundColor: Colors.grey.shade400,
  );