39 lines
1.1 KiB
Dart
39 lines
1.1 KiB
Dart
part of '../main.dart';
|
|
|
|
class EntityName extends StatelessWidget {
|
|
|
|
final EdgeInsetsGeometry padding;
|
|
final TextOverflow textOverflow;
|
|
final bool wordsWrap;
|
|
final double fontSize;
|
|
final TextAlign textAlign;
|
|
|
|
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);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final entityModel = EntityModel.of(context);
|
|
return InkWell(
|
|
child: Padding(
|
|
padding: padding,
|
|
child: Text(
|
|
"${entityModel.entityWrapper.displayName}",
|
|
overflow: textOverflow,
|
|
softWrap: wordsWrap,
|
|
style: TextStyle(fontSize: fontSize),
|
|
textAlign: textAlign,
|
|
),
|
|
),
|
|
onLongPress: () {
|
|
if (entityModel.handleTap) {
|
|
entityModel.entityWrapper.handleHold();
|
|
}
|
|
},
|
|
onTap: () {
|
|
if (entityModel.handleTap) {
|
|
entityModel.entityWrapper.handleTap();
|
|
}
|
|
}
|
|
);
|
|
}
|
|
} |