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/entity_class/switch_entity.class.dart

29 lines
658 B
Dart

part of '../main.dart';
class _SwitchEntityWidgetState extends _EntityWidgetState {
@override
void initState() {
super.initState();
}
@override
void sendNewState(newValue) {
eventBus.fire(new ServiceCallEvent(
widget.entity.domain, (newValue as bool) ? "turn_on" : "turn_off", widget.entity.entityId, null));
}
@override
Widget _buildActionWidget(bool inCard, BuildContext context) {
return Switch(
value: widget.entity.isOn,
onChanged: ((switchState) {
sendNewState(switchState);
setState(() {
widget.entity.state = switchState ? 'on' : 'off';
});
}),
);
}
}