From b75b7cf080b578c83ef7db1b2dff5713fa770905 Mon Sep 17 00:00:00 2001 From: Gibah Joseph Date: Sat, 20 Feb 2021 16:53:45 +0100 Subject: [PATCH] fixed wrong config for md sizes --- lib/src/flutter_bootstrap.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/flutter_bootstrap.dart b/lib/src/flutter_bootstrap.dart index 811c972..aec841e 100644 --- a/lib/src/flutter_bootstrap.dart +++ b/lib/src/flutter_bootstrap.dart @@ -56,7 +56,7 @@ String bootstrapPrefixBasedOnWidth(double width) { return "lg"; } - if (width > 768) { + if (width > 767) { return "md"; }