Skip to content

Commit e209536

Browse files
committedJan 8, 2019
Minor changes, updated packages
1 parent c93a04b commit e209536

File tree

4 files changed

+17
-33
lines changed

4 files changed

+17
-33
lines changed
 

‎.vscode/launch.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Flutter",
9+
"request": "launch",
10+
"type": "dart"
11+
}
12+
]
13+
}

‎lib/widgets/reactive_refresh_indicator.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ class ReactiveRefreshIndicatorState extends State<ReactiveRefreshIndicator>
357357
_positionController
358358
.animateTo(1.0 / _kDragSizeFactorLimit,
359359
duration: _kIndicatorSnapDuration)
360-
.then<void>((Null value) {
360+
.then((value) {
361361
if (mounted && _mode == _RefreshIndicatorMode.snap) {
362362
assert(widget.onRefresh != null);
363363
setState(() => _mode = _RefreshIndicatorMode.refresh);

‎pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: phone_auth
22
description: A phone authentication tutorial.
33

4-
version: 1.2.0+3
4+
version: 1.3.0+4
55

66
dependencies:
77
flutter:
88
sdk: flutter
9-
google_sign_in: "^3.0.4"
10-
firebase_auth: "^0.5.15"
9+
google_sign_in: ^3.2.4
10+
firebase_auth: ^0.6.6
1111

1212
dev_dependencies:
1313
flutter_test:

‎test/widget_test.dart

-29
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.