This repository has been archived on 2023-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
ha_client/lib/pages/widgets/page_loading_error.dart
2020-04-04 15:13:55 +00:00

33 lines
849 B
Dart

part of '../../main.dart';
class PageLoadingError extends StatelessWidget {
final String errorText;
const PageLoadingError({Key key, this.errorText: "Error"}) : super(key: key);
@override
Widget build(BuildContext context) {
return Row(
mainAxisSize: MainAxisSize.max,
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Column(
children: <Widget>[
Padding(
padding: EdgeInsets.only(top: 40.0, bottom: 20.0),
child: Icon(
Icons.error,
color: Colors.redAccent,
size: 48.0
)
),
Text(this.errorText, style: Theme.of(context).textTheme.subtitle)
],
)
],
);
}
}