pre built flutter widgets
- navigation bar
@override
Widget build(BuildContext context) {
final size = MediaQuery.of(context).size;
return QueenNavBar(
color: Colors.blue,
logo: Padding(
padding: const EdgeInsets.all(horizontal: 8),
child: Text(
"Queen 👑",
),
),
children: [
OutlineButton(
title: 'home',
onPressed: (){},
),
OutlineButton(
title: 'about',
onPressed: (){},
),
OutlineButton(
title: 'contact',
onPressed: (){},
),
],
drawerButtonBuilder: () {
return Padding(
padding: EdgeInsets.symmetric(horizontal: size.width * .01),
child: OutlineButton(
child: Icon(Icons.menu),
onPressed: () =>
print('Long Live The Queen 👑')
,
),
);
},
);
}