Update search field widget

This commit is contained in:
Oystein Kristoffer Tveit 2020-06-29 23:49:45 +02:00
parent d80ebc4d8e
commit 6d72aa41c3
1 changed files with 6 additions and 3 deletions

View File

@ -6,9 +6,12 @@ class SearchBar extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Container( return TextField(
height: 20, controller: TextEditingController(),
width: 100, decoration: InputDecoration(
labelText: 'Search',
border: OutlineInputBorder()
),
); );
} }
} }