Skip to content

Commit 803b6b2

Browse files
author
James Foster
committed
Update libraries and fix lint issues.
1 parent 4d54140 commit 803b6b2

5 files changed

Lines changed: 237 additions & 357 deletions

File tree

extras/device_client/lib/view/current_data_page.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class CurrentData extends StatelessWidget {
7373
children: <Widget>[
7474
if (key == 'PID')
7575
DropdownButtonFormField<String>(
76-
value: value,
76+
initialValue: value,
7777
items: const <DropdownMenuItem<String>>[
7878
DropdownMenuItem(
7979
value: 'OFF',
@@ -100,7 +100,7 @@ class CurrentData extends StatelessWidget {
100100
)
101101
else if (key == 'HeatOrChill')
102102
DropdownButtonFormField<String>(
103-
value: value,
103+
initialValue: value,
104104
items: const <DropdownMenuItem<String>>[
105105
DropdownMenuItem(
106106
value: 'CHILL',

0 commit comments

Comments
 (0)