Files
PiliPlus/lib/common/widgets/scaffold.dart
dom 07843a5e77 drop
Signed-off-by: dom <githubaccount56556@proton.me>
2026-05-08 21:27:01 +08:00

19 lines
277 B
Dart

import 'package:flutter/material.dart';
Widget scaffold({
Widget? appBar,
required Widget body,
}) {
if (appBar != null) {
body = Column(
children: [
appBar,
Expanded(child: body),
],
);
}
return Material(
child: body,
);
}