Skip to content

Commit 567482d

Browse files
committed
Update Responsive Framework v0.0.4
1 parent 0a159ad commit 567482d

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

lib/main.dart

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,12 @@ class MyApp extends StatelessWidget {
1919
defaultScale: true,
2020
breakpoints: [
2121
ResponsiveBreakpoint(breakpoint: 450, name: MOBILE),
22-
ResponsiveBreakpoint(breakpoint: 800, name: TABLET, scale: true),
23-
ResponsiveBreakpoint(breakpoint: 1000, name: TABLET, scale: true),
22+
ResponsiveBreakpoint(
23+
breakpoint: 800, name: TABLET, autoScale: true),
24+
ResponsiveBreakpoint(
25+
breakpoint: 1000, name: TABLET, autoScale: true),
2426
ResponsiveBreakpoint(breakpoint: 1200, name: DESKTOP),
25-
ResponsiveBreakpoint(breakpoint: 2460, name: "4K", scale: true),
27+
ResponsiveBreakpoint(breakpoint: 2460, name: "4K", autoScale: true),
2628
],
2729
background: Container(color: Color(0xFFF5F5F5))),
2830
initialRoute: "/",

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: minimal
22
description: A minimalistic Flutter website template for blogs and portfolios.
3-
version: 1.0.0
3+
version: 1.0.1
44

55
environment:
66
sdk: ">=2.4.0 <3.0.0"
77

88
dependencies:
99
flutter:
1010
sdk: flutter
11-
responsive_framework: ^0.0.3
11+
responsive_framework: ^0.0.4
1212
google_fonts: ^0.3.9
1313

1414
dev_dependencies:

0 commit comments

Comments
 (0)