Skip to content

Commit

Permalink
Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
martijn00 committed Aug 8, 2024
1 parent b3a4e9d commit 8ac7e9a
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions packages/flutter_adaptive_scaffold/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,11 @@ Widget build(BuildContext context) {
transitionDuration: Duration(milliseconds: _transitionDuration),
// An option to override the default breakpoints used for small, medium,
// mediumLarge, large, and extraLarge.
smallBreakpoint: const WidthPlatformBreakpoint(endWidth: 700),
mediumBreakpoint:
const WidthPlatformBreakpoint(beginWidth: 700, endWidth: 1000),
mediumLargeBreakpoint:
const WidthPlatformBreakpoint(beginWidth: 1000, endWidth: 1200),
largeBreakpoint:
const WidthPlatformBreakpoint(beginWidth: 1200, endWidth: 1600),
extraLargeBreakpoint: const WidthPlatformBreakpoint(beginWidth: 1600),
smallBreakpoint: const Breakpoint(endWidth: 700),
mediumBreakpoint: const Breakpoint(beginWidth: 700, endWidth: 1000),
mediumLargeBreakpoint: const Breakpoint(beginWidth: 1000, endWidth: 1200),
largeBreakpoint: const Breakpoint(beginWidth: 1200, endWidth: 1600),
extraLargeBreakpoint: const Breakpoint(beginWidth: 1600),
useDrawer: false,
selectedIndex: _selectedTab,
onSelectedIndexChange: (int index) {
Expand Down

0 comments on commit 8ac7e9a

Please sign in to comment.