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/panels/config_panel_widget.dart

33 lines
623 B
Dart
Raw Normal View History

part of '../main.dart';
class ConfigPanelWidget extends StatefulWidget {
ConfigPanelWidget({Key key}) : super(key: key);
@override
_ConfigPanelWidgetState createState() => new _ConfigPanelWidgetState();
}
class _ConfigPanelWidgetState extends State<ConfigPanelWidget> {
@override
void initState() {
super.initState();
2019-10-20 20:54:29 +03:00
}
@override
Widget build(BuildContext context) {
return ListView(
children: [
2019-10-20 20:54:29 +03:00
LinkToWebConfig(name: "Home Assistant configuration", url: ConnectionManager().httpWebHost+"/config"),
],
);
}
@override
void dispose() {
super.dispose();
}
}