stack_wallet/lib/widgets/desktop/desktop_scaffold.dart
2023-05-27 00:21:16 +03:00

81 lines
1.8 KiB
Dart

/*
* This file is part of Stack Wallet.
*
* Copyright (c) 2023 Cypher Stack
* All Rights Reserved.
* The code is distributed under GPLv3 license, see LICENSE file for details.
* Generated by Cypher Stack on 2023-05-26
*
*/
import 'package:flutter/material.dart';
import 'package:stackwallet/themes/stack_colors.dart';
import 'package:stackwallet/widgets/background.dart';
class DesktopScaffold extends StatelessWidget {
const DesktopScaffold({
Key? key,
this.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 ?? Theme.of(context).extension<StackColors>()!.background,
child: Background(
child: Column(
// crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
if (appBar != null) appBar!,
if (body != null)
Expanded(
child: body!,
),
],
),
),
);
}
}
class MasterScaffold extends StatelessWidget {
const MasterScaffold({
Key? key,
required this.isDesktop,
required this.appBar,
required this.body,
this.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 Background(
child: Scaffold(
backgroundColor: background ??
Theme.of(context).extension<StackColors>()!.background,
appBar: appBar as PreferredSizeWidget?,
body: body,
),
);
}
}
}