This commit is contained in:
unknown 2018-08-09 12:04:37 +03:00
parent 04cbeea85a
commit d30f6f28d2
1 changed files with 4 additions and 1 deletions

View File

@ -158,7 +158,10 @@ class _ClientViewDetailsState extends State<ClientViewDetails> {
}
listTiles
.add(FutureBuilder<Null>(future: _launched, builder: _launchStatus));
.add(Padding(
padding: const EdgeInsets.all(14.0),
child: FutureBuilder<Null>(future: _launched, builder: _launchStatus),
));
return listTiles;
}