|
|
|
@ -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,
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|