2022-09-18 16:14:27 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:stackwallet/utilities/cfcolors.dart';
|
|
|
|
|
|
|
|
class DesktopScaffold extends StatelessWidget {
|
|
|
|
const DesktopScaffold({
|
|
|
|
Key? key,
|
|
|
|
this.background = CFColors.background,
|
|
|
|
this.appBar,
|
|
|
|
this.body,
|
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
final Color background;
|
|
|
|
final Widget? appBar;
|
|
|
|
final Widget? body;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Material(
|
|
|
|
color: background,
|
|
|
|
child: Column(
|
2022-09-18 16:51:42 +00:00
|
|
|
// crossAxisAlignment: CrossAxisAlignment.stretch,
|
2022-09-18 16:14:27 +00:00
|
|
|
children: [
|
|
|
|
if (appBar != null) appBar!,
|
|
|
|
if (body != null)
|
|
|
|
Expanded(
|
|
|
|
child: body!,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2022-09-18 17:27:38 +00:00
|
|
|
|
|
|
|
class MasterScaffold extends StatelessWidget {
|
|
|
|
const MasterScaffold({
|
|
|
|
Key? key,
|
|
|
|
required this.isDesktop,
|
|
|
|
required this.appBar,
|
|
|
|
required this.body,
|
|
|
|
this.background = CFColors.background,
|
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
final bool isDesktop;
|
|
|
|
final Widget appBar;
|
|
|
|
final Widget body;
|
|
|
|
final Color background;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
if (isDesktop) {
|
|
|
|
return DesktopScaffold(
|
|
|
|
background: background,
|
|
|
|
appBar: appBar,
|
|
|
|
body: body,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return Scaffold(
|
|
|
|
backgroundColor: background,
|
|
|
|
appBar: appBar as PreferredSizeWidget?,
|
|
|
|
body: body,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|