1
0
mirror of https://github.com/h7x4/Jisho-Study-Tool.git synced 2024-12-21 05:27:29 +01:00

Update search field widget

This commit is contained in:
Oystein Kristoffer Tveit 2020-06-29 23:49:45 +02:00
parent d80ebc4d8e
commit 6d72aa41c3

View File

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