mirror of
https://github.com/git-touch/git-touch
synced 2024-12-18 11:19:28 +01:00
24 lines
505 B
Dart
24 lines
505 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:git_touch/scaffolds/utils.dart';
|
|
|
|
class SingleScaffold extends StatelessWidget {
|
|
final Widget title;
|
|
final Widget body;
|
|
final Widget trailing;
|
|
|
|
SingleScaffold({
|
|
@required this.title,
|
|
@required this.body,
|
|
this.trailing,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return CommonScaffold(
|
|
title: title,
|
|
body: Scrollbar(child: SingleChildScrollView(child: body)),
|
|
trailing: trailing,
|
|
);
|
|
}
|
|
}
|