File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -560,13 +560,18 @@ class _ResponsiveWrapperState extends State<ResponsiveWrapper>
560560 List <ResponsiveBreakpoint > defaultBreakpoints = widget.breakpoints ?? [];
561561 List <ResponsiveBreakpointSegment > defaultBreakpointSegments =
562562 calcBreakpointSegments (defaultBreakpoints);
563+ // Add Portrait and Landscape annotations if landscape breakpoints are provided.
564+ if (widget.breakpointsLandscape != null ) {
565+ print ('**PORTRAIT**' );
566+ }
563567 ResponsiveUtils .debugLogBreakpointSegments (defaultBreakpointSegments);
564568 // Print landscape breakpoints.
565569 if (widget.breakpointsLandscape != null ) {
566570 List <ResponsiveBreakpoint > landscapeBreakpoints =
567571 widget.breakpointsLandscape ?? [];
568572 List <ResponsiveBreakpointSegment > landscapeBreakpointSegments =
569573 calcBreakpointSegments (landscapeBreakpoints);
574+ print ('**LANDSCAPE**' );
570575 ResponsiveUtils .debugLogBreakpointSegments (landscapeBreakpointSegments);
571576 }
572577 }
You can’t perform that action at this time.
0 commit comments