1
0
mirror of https://github.com/alibaba/flutter-go.git synced 2025-06-09 04:42:35 +08:00
Files
flutter-go/lib/widgets/404.dart
jianping.xwh 49b86b4c70 add files
2019-01-08 17:47:25 +08:00

17 lines
344 B
Dart

import 'package:flutter/material.dart';
class WidgetNotFound extends StatelessWidget {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("widget not found"),
),
body: Container(
child: new Text("widget not found")
)
);
}
}