1
0
mirror of https://github.com/alibaba/flutter-go.git synced 2025-06-14 00:20:24 +08:00
Files
flutter-go/lib/widgets/404.dart
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")
)
);
}
}