diff --git a/lib/shop/search.dart b/lib/shop/search.dart index ccac016..0f66913 100644 --- a/lib/shop/search.dart +++ b/lib/shop/search.dart @@ -118,7 +118,24 @@ class _ShopSearchState extends State { ), ], ), - ) + ), + + 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), + ), + ), + ), + ), + ], ), );