Files
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")
)
);
}
}