Files
FlutterUnit/lib/views/widgets/RenderObjectWidget/ErrorWidget.dart
toly dd52bc7157 .
2020-04-07 06:30:39 +08:00

26 lines
590 B
Dart

import 'package:flutter/material.dart';
/// create by 张风捷特烈 on 2020-03-31
/// contact me by email 1981462002@qq.com
/// 说明:
// {
// "widgetId": 197,
// "name": 'ErrorWidget基本使用',
// "priority": 1,
// "subtitle":
// "入参 : 显示信息 【Object】",
// }
class ErrorWidgetDemo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
height: 200,
child: ErrorWidget(
'I am Error ErrorWidget\n'
'But now, there has no error.'
),
);
}
}