基础组件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
330 B

  1. import 'package:flutter/material.dart';
  2. class PreviewPage extends StatelessWidget {
  3. final Image image;
  4. const PreviewPage({Key key, this.image}) : super(key: key);
  5. @override
  6. Widget build(BuildContext context) {
  7. return Scaffold(
  8. appBar: AppBar(),
  9. body: Center(
  10. child: image,
  11. ),
  12. );
  13. }
  14. }