Merge pull request #178 from SebastienBtr/patch-1

Update readme example
This commit is contained in:
Lorenzo Pichilli 2019-10-24 12:36:00 +02:00 committed by GitHub
commit 37080ae3d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ class _MyAppState extends State<MyApp> {
padding: EdgeInsets.all(20.0), padding: EdgeInsets.all(20.0),
child: Text("CURRENT URL\n${ (url.length > 50) ? url.substring(0, 50) + "..." : url }"), child: Text("CURRENT URL\n${ (url.length > 50) ? url.substring(0, 50) + "..." : url }"),
), ),
(progress != 1.0) ? LinearProgressIndicator(value: progress) : null, (progress != 1.0) ? LinearProgressIndicator(value: progress) : Container(),
Expanded( Expanded(
child: Container( child: Container(
margin: const EdgeInsets.all(10.0), margin: const EdgeInsets.all(10.0),