Files
2019-08-13 20:38:46 +08:00

16 lines
344 B
Dart

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