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.1 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-25 20:44:19 +02:00
final int maxLines;
2018-11-14 19:52:17 +02:00
2018-11-25 20:44:19 +02:00
const EntityName({Key key, this.maxLines, 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) {
2018-11-24 00:37:55 +02:00
final EntityWrapper entityWrapper = EntityModel.of(context).entityWrapper;
2019-03-13 14:08:54 +02:00
TextStyle textStyle = TextStyle(fontSize: fontSize);
if (entityWrapper.entity.statelessType == StatelessEntityType.WEBLINK) {
textStyle = textStyle.apply(color: Colors.blue, decoration: TextDecoration.underline);
}
2018-11-24 00:37:55 +02:00
return Padding(
padding: padding,
child: Text(
"${entityWrapper.displayName}",
overflow: textOverflow,
softWrap: wordsWrap,
2018-11-25 20:44:19 +02:00
maxLines: maxLines,
2019-03-13 14:08:54 +02:00
style: textStyle,
2018-11-24 00:37:55 +02:00
textAlign: textAlign,
2018-10-27 14:27:41 +03:00
),
);
}
}