Commit 680b22ce authored by GayaniPKarunaratne's avatar GayaniPKarunaratne

Modification in hearder

parent a14c37d9
...@@ -8,7 +8,19 @@ class _HomeScreenState extends State<HomeScreen> { ...@@ -8,7 +8,19 @@ class _HomeScreenState extends State<HomeScreen> {
Widget build(BuildContext context) { Widget build(BuildContext context) {
var size = MediaQuery.of(context).size; var size = MediaQuery.of(context).size;
return Scaffold( return Scaffold(
body: Stack( appBar: AppBar(
leading: IconButton(icon: Icon(Icons.menu),onPressed: (){
}),
title: Text("CoviDefender Dashboard"),
actions: <Widget>[
IconButton(icon: Icon(Icons.search),onPressed: (){
}),
],
),
body: Stack(
children: <Widget>[ children: <Widget>[
Container( Container(
height: size.height * .4, height: size.height * .4,
...@@ -155,7 +167,8 @@ class _HomeScreenState extends State<HomeScreen> { ...@@ -155,7 +167,8 @@ class _HomeScreenState extends State<HomeScreen> {
)), )),
Text('Event Risk Analyzer', style: TextStyle(fontSize: 20.0)) Text('Event Risk Analyzer', style: TextStyle(fontSize: 20.0))
], ],
)), )
),
], ],
), ),
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment