From 71d0a7c4ecaab3f92e34d9988c460a1d7a2e031b Mon Sep 17 00:00:00 2001 From: digitalrbnz <66220510+digitalrbnz@users.noreply.github.com> Date: Sun, 27 Sep 2020 18:47:42 +1300 Subject: [PATCH] Minor correct on http to https Fixed this issue with example placeholder image flutter: Bad state: Insecure HTTP is not allowed by platform: http://via.placeholder.com/350x150 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 546ecaa..2c85d80 100644 --- a/README.md +++ b/README.md @@ -258,7 +258,7 @@ The `Controller` is used to control the `index` of the Swiper, start or stop aut new Swiper( itemBuilder: (BuildContext context, int index) { return new Image.network( - "http://via.placeholder.com/288x188", + "https://via.placeholder.com/288x188", fit: BoxFit.fill, ); },