Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
[Reply] Cap body at 1340 for desktop and tablet (#425)
Browse files Browse the repository at this point in the history
* Cap reply body with to 1340 on desktop/tablet

* Fix white lines around body of navigation rail

* Cap tablet width to 800

* Use Center widget instead of Row and Flexible

* Change divider width back to 1 and set cap at 1340 for both tablet and desktop

Co-authored-by: Pierre-Louis <6655696+guidezpl@users.noreply.github.com>
  • Loading branch information
Renzo-Olivares and guidezpl authored Feb 18, 2021
1 parent cc007bb commit cb10d4a
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions lib/studies/reply/adaptive_nav.dart
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,14 @@ class _DesktopNavState extends State<_DesktopNav>
),
const VerticalDivider(thickness: 1, width: 1),
Expanded(
child: _SharedAxisTransitionSwitcher(
defaultChild: _MailNavigator(
child: MailboxBody(key: widget.inboxKey),
child: Center(
child: ConstrainedBox(
constraints: const BoxConstraints(maxWidth: 1340),
child: _SharedAxisTransitionSwitcher(
defaultChild: _MailNavigator(
child: MailboxBody(key: widget.inboxKey),
),
),
),
),
),
Expand Down

0 comments on commit cb10d4a

Please sign in to comment.