We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3351cf6 commit ef50034Copy full SHA for ef50034
lib/main.dart
@@ -35,13 +35,10 @@ class MyApp extends StatelessWidget {
35
width: ResponsiveValue<double>(context,
36
conditionalValues: [
37
const Condition.equals(name: MOBILE, value: 450),
38
- const Condition.largerThan(
39
- breakpoint: 800, value: 800),
40
41
- breakpoint: 1000, value: 1000),
42
43
- breakpoint: 1200, value: null),
44
- const Condition.equals(name: '4K', value: null),
+ const Condition.between(
+ start: 800, end: 1100, value: 800),
+ start: 1000, end: 1200, value: 1000),
45
]).value,
46
child: child!),
47
),
0 commit comments