Files
2019-02-19 11:02:21 +08:00

16 lines
340 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: Text("widget not found")
)
);
}
}