Skip to content

Commit 9b08033

Browse files
committed
QUICKFIX Landscape Breakpoints Null
1 parent 18c57db commit 9b08033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/responsive_breakpoints.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ class ResponsiveBreakpointsState extends State<ResponsiveBreakpoints>
179179
List<Breakpoint> getActiveBreakpoints() {
180180
// If the device is landscape enabled and the current orientation is landscape, use landscape breakpoints.
181181
if (isLandscape) {
182-
return widget.breakpointsLandscape ?? [];
182+
return widget.breakpointsLandscape ?? widget.breakpoints;
183183
}
184184
return widget.breakpoints;
185185
}

0 commit comments

Comments
 (0)