Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Verified Commit aeed02da authored by Sage Muhammad Abdullah's avatar Sage Muhammad Abdullah
Browse files

Add padding to search box

parent f9013373
Branches
No related tags found
2 merge requests!10New version number and Enabling Agregasi Kebutuhan Page,!6First Version go to master
...@@ -49,7 +49,9 @@ class _ListInstitusiWidgetState extends State<ListInstitusiWidget> { ...@@ -49,7 +49,9 @@ class _ListInstitusiWidgetState extends State<ListInstitusiWidget> {
'Institusi Siaga Wabah', 'Institusi Siaga Wabah',
style: Theme.of(context).textTheme.headline5, style: Theme.of(context).textTheme.headline5,
)), )),
TextField( Padding(
padding: EdgeInsets.only(bottom: 12.0),
child: TextField(
controller: editingController, controller: editingController,
decoration: InputDecoration( decoration: InputDecoration(
labelText: 'Search', labelText: 'Search',
...@@ -57,7 +59,7 @@ class _ListInstitusiWidgetState extends State<ListInstitusiWidget> { ...@@ -57,7 +59,7 @@ class _ListInstitusiWidgetState extends State<ListInstitusiWidget> {
prefixIcon: Icon(Icons.search), prefixIcon: Icon(Icons.search),
border: OutlineInputBorder( border: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(25.0)))), borderRadius: BorderRadius.all(Radius.circular(25.0)))),
), )),
StreamBuilder( StreamBuilder(
stream: repository.institusiCollections.snapshots(), stream: repository.institusiCollections.snapshots(),
builder: (_, snapshot) { builder: (_, snapshot) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment