chore: follow up routing

This commit is contained in:
Krille 2023-08-11 15:05:56 +02:00
parent 6420f1d385
commit f442bb89f9
No known key found for this signature in database

View file

@ -41,17 +41,19 @@ class SideViewLayout extends StatelessWidget {
: !threeColumnMode : !threeColumnMode
? null ? null
: sideViewWidth, : sideViewWidth,
child: Container( child: hideSideView
clipBehavior: Clip.hardEdge, ? const SizedBox.shrink()
decoration: BoxDecoration( : Container(
border: Border( clipBehavior: Clip.hardEdge,
left: BorderSide( decoration: BoxDecoration(
color: Theme.of(context).dividerColor, border: Border(
left: BorderSide(
color: Theme.of(context).dividerColor,
),
),
),
child: sideView,
), ),
),
),
child: sideView,
),
), ),
], ],
); );