This commit is contained in:
2021-01-09 12:09:29 +01:00
parent 14f36bc01e
commit b262fbb973

View File

@@ -114,10 +114,21 @@ class _SearchResultsState extends State<SearchResults> {
color: Colors.grey, color: Colors.grey,
icon: Icons.filter_alt_rounded, icon: Icons.filter_alt_rounded,
text: "Filtruj", text: "Filtruj",
onPressed: () {}, onPressed: () => ScaffoldState().openDrawer(),
), ),
], ],
), ),
drawer: Drawer(
child: ListView(
padding: EdgeInsets.zero,
children: [
DrawerHeader(
decoration: BoxDecoration(color: Colors.grey[850]),
child: Text('Filtry'),
)
],
),
),
); );
} }
} }