基础库
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

empty_page.dart 197 B

4 年前
12345678910
  1. import 'package:flutter/widgets.dart';
  2. class EmptyPage extends StatelessWidget {
  3. @override
  4. Widget build(BuildContext context) {
  5. return Center(child: Text('Page has no regist'),);
  6. }
  7. }