Skip to content

Commit

Permalink
Implemented Apply Filters Button
Browse files Browse the repository at this point in the history
  • Loading branch information
zubair-khanzada committed Sep 14, 2019
1 parent 2d1af6d commit 7f60ad9
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion lib/shop/search.dart
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,24 @@ class _ShopSearchState extends State<ShopSearch> {
),
],
),
)
),

Padding(
padding: const EdgeInsets.only(left: 20.0, right: 20, top: 50),
child: ButtonTheme(
buttonColor: Theme.of(context).primaryColor,
minWidth: double.infinity,
height: 40.0,
child: RaisedButton(
onPressed: () {},
child: Text(
"Apply Filters",
style: TextStyle(color: Colors.white, fontSize: 16),
),
),
),
),

],
),
);
Expand Down

0 comments on commit 7f60ad9

Please sign in to comment.