Widget build(BuildContext context) {
return Scaffold(
extendBodyBehindAppBar: true,
appBar: AppBar(
backgroundColor: Colors.transparent,
elevation: 0, // shadow
leading:BackButton(),
title: Text("Flutter App" , style:TextStyle() ),
titleSpacing: 50, // Distance between leading and title
centerTitle: true,
actions: [
IconButton(onPressed: (){}, icon: Icon(Icons.notifications) , ),
IconButton(onPressed: (){}, icon: Icon(Icons.favorite)),
IconButton(onPressed: (){}, icon: Icon(Icons.search)),
],
),
body: Image.network("https://images.pexels.com/photos/4245...",
width:double.infinity ,
height: double.infinity,
fit: BoxFit.fill),
);
}