diff --git a/lib/main.dart b/lib/main.dart index 1107985..5f694a0 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -84,7 +84,7 @@ part 'ui_widgets/card_header_widget.dart'; EventBus eventBus = new EventBus(); const String appName = "HA Client"; -const appVersion = "0.3.9-71"; +const appVersion = "0.3.9-72"; String homeAssistantWebHost; diff --git a/lib/ui_widgets/card_header_widget.dart b/lib/ui_widgets/card_header_widget.dart index 7114e76..3b7e0b3 100644 --- a/lib/ui_widgets/card_header_widget.dart +++ b/lib/ui_widgets/card_header_widget.dart @@ -14,7 +14,7 @@ class CardHeaderWidget extends StatelessWidget { title: Text("$name", textAlign: TextAlign.left, overflow: TextOverflow.ellipsis, - style: new TextStyle(fontWeight: FontWeight.bold, fontSize: 25.0)), + style: new TextStyle(fontWeight: FontWeight.bold, fontSize: Sizes.largeFontSize)), ); } else { result = new Container(width: 0.0, height: 0.0); diff --git a/pubspec.yaml b/pubspec.yaml index 57f4647..af0baeb 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: hass_client description: Home Assistant Android Client -version: 0.3.9+71 +version: 0.3.9+72 environment: sdk: ">=2.0.0-dev.68.0 <3.0.0"