File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Copy this file as "local.config.yaml" in the same folder (.gitignored)
2
+ # Enable Google Picker API and test port
2
3
3
4
# The developer key needed for the picker API
4
5
# Credentials/API Keys
Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ class PickerResponse {
275
275
}
276
276
277
277
class PickerFeature {
278
- final _jsObject;
278
+ final JsObject _jsObject;
279
279
280
280
PickerFeature (this ._jsObject);
281
281
@@ -377,7 +377,8 @@ GooglePicker _picker;
377
377
Future <GooglePicker > loadPicker (Gapi gapi) {
378
378
if (_picker == null ) {
379
379
return gapi.load ('picker' ).then ((_) {
380
- _picker = GooglePicker (context['google' ]['picker' ] as JsObject );
380
+ _picker =
381
+ GooglePicker ((context['google' ] as JsObject )['picker' ] as JsObject );
381
382
return _picker;
382
383
});
383
384
}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Future main() async {
8
8
print ('http://localhost:8081/google_jsapi_picker_example.html' );
9
9
await shell.run ('''
10
10
11
- pub global run webdev serve example:8081 --live-reload --hostname 0.0.0.0
11
+ dart pub global run webdev serve example:8081 --auto=refresh --hostname 0.0.0.0
12
12
13
13
''' );
14
14
}
You can’t perform that action at this time.
0 commit comments