35 lines
954 B
Dart
35 lines
954 B
Dart
part of '../../main.dart';
|
|
|
|
class SimpleEntityState extends StatelessWidget {
|
|
|
|
final bool expanded;
|
|
|
|
const SimpleEntityState({Key key, this.expanded: true}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final entityModel = EntityModel.of(context);
|
|
Widget result = Padding(
|
|
padding: EdgeInsets.fromLTRB(0.0, 0.0, Entity.rightWidgetPadding, 0.0),
|
|
child: GestureDetector(
|
|
child: Text(
|
|
"${entityModel.entity.state}${entityModel.entity.unitOfMeasurement}",
|
|
textAlign: TextAlign.right,
|
|
style: new TextStyle(
|
|
fontSize: Entity.stateFontSize,
|
|
)),
|
|
onTap: () => entityModel.handleTap
|
|
? eventBus.fire(new ShowEntityPageEvent(entityModel.entity))
|
|
: null,
|
|
)
|
|
);
|
|
if (expanded) {
|
|
return Expanded(
|
|
child: result
|
|
);
|
|
} else {
|
|
return result;
|
|
}
|
|
}
|
|
}
|