Camera fullscreen view

This commit is contained in:
Yegor Vialov
2020-03-12 12:22:38 +00:00
parent 959ff21b9b
commit b00b745f27
3 changed files with 52 additions and 17 deletions

View File

@ -0,0 +1,18 @@
part of '../main.dart';
class FullScreenPage extends StatelessWidget {
final Widget child;
const FullScreenPage({Key key, this.child}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
color: Colors.black,
child: Center(
child: this.child,
),
);
}
}