mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-07-15 03:04:25 +08:00
13 lines
303 B
Dart
13 lines
303 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class WidgetNotFound extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text("widget not found"),
|
|
),
|
|
body: Container(child: Text("widget not found")));
|
|
}
|
|
}
|