From 77086a70f021757bed7af1db3e7c1724fc763736 Mon Sep 17 00:00:00 2001 From: Salim Benabadji Date: Mon, 14 Jun 2021 12:21:08 +0100 Subject: [PATCH] fixing code sample missing , in the code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 28d6505..7ab97e2 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ import 'package:responsive_builder/responsive_builder.dart'; // Construct and pass in a widget per screen type ScreenTypeLayout( - mobile: Container(color:Colors.blue) + mobile: Container(color:Colors.blue), tablet: Container(color: Colors.yellow), desktop: Container(color: Colors.red), watch: Container(color: Colors.purple),