main.dart 426 B

123456789101112131415161718
  1. import 'package:flutter/material.dart';
  2. import 'start_page.dart';
  3. void main()=>runApp(MyApp());
  4. class MyApp extends StatelessWidget {
  5. final Widget child;
  6. MyApp({Key key, this.child}) : super(key: key);
  7. @override
  8. Widget build(BuildContext context) {
  9. return MaterialApp(
  10. title: '物流助手',
  11. debugShowCheckedModeBanner: false,
  12. //debugShowMaterialGrid:true,
  13. home: StartPage(),
  14. );
  15. }
  16. }