We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18c57db commit 9b08033Copy full SHA for 9b08033
1 file changed
lib/responsive_breakpoints.dart
@@ -179,7 +179,7 @@ class ResponsiveBreakpointsState extends State<ResponsiveBreakpoints>
179
List<Breakpoint> getActiveBreakpoints() {
180
// If the device is landscape enabled and the current orientation is landscape, use landscape breakpoints.
181
if (isLandscape) {
182
- return widget.breakpointsLandscape ?? [];
+ return widget.breakpointsLandscape ?? widget.breakpoints;
183
}
184
return widget.breakpoints;
185
0 commit comments