1
0
mirror of https://github.com/git-touch/git-touch synced 2025-03-07 20:57:44 +01:00

20 lines
470 B
Dart
Raw Normal View History

2019-08-31 22:44:27 +08:00
import 'package:flutter/material.dart';
2019-09-25 17:06:36 +08:00
import 'package:git_touch/scaffolds/single.dart';
2019-09-11 19:59:47 +08:00
import 'package:git_touch/widgets/app_bar_title.dart';
2019-08-31 22:44:27 +08:00
class ImageView extends StatelessWidget {
final ImageProvider imageProvider;
ImageView(this.imageProvider);
@override
Widget build(BuildContext context) {
2019-09-25 17:06:36 +08:00
return SingleScaffold(
2019-09-11 19:59:47 +08:00
title: AppBarTitle('Image preview'),
2019-09-25 17:06:36 +08:00
body: Container(
2019-09-25 14:24:20 +08:00
child: Image(image: imageProvider),
),
2019-08-31 22:44:27 +08:00
);
}
}