4
2
Fork 0

fix: padding on top of contact search

pull/53/head
Sudharshan S. 2019-06-14 08:18:14 +08:00
parent 9ba9ab6487
commit 91148a77d0
Signed by: sudharshan
GPG Key ID: C861C97AAF3D9559
2 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,9 @@
import "package:flutter/services.dart";
import 'routes.dart';
import "src/blocs/heartbeat_bloc.dart";
// import 'package:flutter/rendering.dart';
void main() {
// debugPaintSizeEnabled = true;
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light);
Routes();
}

View File

@ -132,6 +132,6 @@ class _ContactViewState extends State<ContactView> {
])),
])),
]);
return ListView(children: children);
return ListView(padding: EdgeInsets.only(top: 10.0), children: children);
}
}