Compare commits

...

3 Commits
0.6.3 ... 0.6.4

Author SHA1 Message Date
7beab9ae93 0.6.4 2019-08-27 20:06:18 +03:00
8c0d1f90a3 Resolves #422 Fix noSuchMethod for group-based UI 2019-08-27 20:05:33 +03:00
05c05ba768 Possibly resolves #422 2019-08-27 12:05:33 +03:00
4 changed files with 4 additions and 4 deletions

View File

@ -116,7 +116,7 @@ EventBus eventBus = new EventBus();
final FirebaseMessaging _firebaseMessaging = FirebaseMessaging(); final FirebaseMessaging _firebaseMessaging = FirebaseMessaging();
FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin = new FlutterLocalNotificationsPlugin(); FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin = new FlutterLocalNotificationsPlugin();
const String appName = "HA Client"; const String appName = "HA Client";
const appVersion = "0.6.3"; const appVersion = "0.6.4";
void main() { void main() {
FlutterError.onError = (errorDetails) { FlutterError.onError = (errorDetails) {

View File

@ -27,7 +27,7 @@ class HACard {
this.showEmpty: true, this.showEmpty: true,
this.content, this.content,
this.states, this.states,
this.conditions, this.conditions: const [],
@required this.type @required this.type
}); });

View File

@ -305,4 +305,4 @@ class CardWidget extends StatelessWidget {
); );
} }
} }

View File

@ -1,7 +1,7 @@
name: hass_client name: hass_client
description: Home Assistant Android Client description: Home Assistant Android Client
version: 0.6.3+630 version: 0.6.4+640
environment: environment:
sdk: ">=2.0.0-dev.68.0 <3.0.0" sdk: ">=2.0.0-dev.68.0 <3.0.0"