mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-21 23:06:33 +08:00
17 lines
341 B
Dart
17 lines
341 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")
|
|
)
|
|
);
|
|
}
|
|
}
|