1
0
mirror of https://github.com/git-touch/git-touch synced 2024-12-18 19:22:54 +01:00
git-touch-android-ios-app/lib/scaffolds/single.dart
2019-11-05 21:43:23 +08:00

24 lines
498 B
Dart

import 'package:flutter/material.dart';
import 'package:git_touch/scaffolds/common.dart';
class SingleScaffold extends StatelessWidget {
final Widget title;
final Widget body;
final Widget action;
SingleScaffold({
@required this.title,
@required this.body,
this.action,
});
@override
Widget build(BuildContext context) {
return CommonScaffold(
title: title,
body: Scrollbar(child: SingleChildScrollView(child: body)),
action: action,
);
}
}