Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- drawer: CustomNavigationDrawer(),
- appBar: AppBar(
- backgroundColor: Colors.white,
- elevation: 2,
- title: AppLogoSmall(),
- centerTitle: true,
- leading: Builder(
- builder: (BuildContext context) {
- return _buildDrawerButton(context);
- },
- ),
- actions: <Widget>[
- CustomSearchButton(
- greyBackground: false,
- onPressed: () {
- openSearchPage(context);
- },
- )
- ],
- iconTheme: IconThemeData(
- color: Colors.black,
- ),
- ),
- body: SingleChildScrollView(
- child: _buildItems(context),
- ),
- );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement