基础库
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.
 
 
 
 
 

14 lines
276 B

  1. import 'package:flutter/material.dart';
  2. import 'package:flutter/widgets.dart';
  3. class EmptyPage extends StatelessWidget {
  4. @override
  5. Widget build(BuildContext context) {
  6. return Scaffold(
  7. body: Center(
  8. child: Text('页面未注册'),
  9. ),
  10. );
  11. }
  12. }