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_widgets/entity_name.dart

33 lines
1.0 KiB
Dart
Raw Normal View History

2018-10-27 14:27:41 +03:00
part of '../main.dart';
class EntityName extends StatelessWidget {
2018-11-14 19:52:17 +02:00
final EdgeInsetsGeometry padding;
2018-11-15 16:13:54 +02:00
final TextOverflow textOverflow;
final bool wordsWrap;
final double fontSize;
final TextAlign textAlign;
2018-11-14 19:52:17 +02:00
2018-11-15 16:13:54 +02:00
const EntityName({Key key, this.padding: const EdgeInsets.only(right: 10.0), this.textOverflow: TextOverflow.ellipsis, this.wordsWrap: true, this.fontSize: Sizes.nameFontSize, this.textAlign: TextAlign.left}) : super(key: key);
2018-11-14 19:52:17 +02:00
2018-10-27 14:27:41 +03:00
@override
Widget build(BuildContext context) {
final entityModel = EntityModel.of(context);
return GestureDetector(
child: Padding(
2018-11-14 19:52:17 +02:00
padding: padding,
2018-10-27 14:27:41 +03:00
child: Text(
"${entityModel.entityWrapper.displayName}",
2018-11-15 16:13:54 +02:00
overflow: textOverflow,
softWrap: wordsWrap,
style: TextStyle(fontSize: fontSize),
textAlign: textAlign,
2018-10-27 14:27:41 +03:00
),
),
onTap: () =>
entityModel.handleTap
? eventBus.fire(new ShowEntityPageEvent(entityModel.entityWrapper.entity))
2018-10-27 14:27:41 +03:00
: null,
);
}
}