Skip to content

Commit dde8df7

Browse files
authored
Merge pull request flutter#10 from flutter/master
update master
2 parents 485a419 + 6b97d7d commit dde8df7

File tree

110 files changed

+1055
-150
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+1055
-150
lines changed

packages/connectivity/CHANGELOG.md

Lines changed: 4 additions & 0 deletions

packages/connectivity/example/README.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

packages/connectivity/lib/connectivity.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import 'package:meta/meta.dart';
1515
/// None: Device not connected to any network
1616
enum ConnectivityResult { wifi, mobile, none }
1717

18+
/// Discover network connectivity configurations: Distinguish between WI-FI and cellular, check WI-FI status and more.
1819
class Connectivity {
1920
/// Constructs a singleton instance of [Connectivity].
2021
///
@@ -35,11 +36,13 @@ class Connectivity {
3536

3637
Stream<ConnectivityResult> _onConnectivityChanged;
3738

39+
/// Exposed for testing purposes and should not be used by users of the plugin.
3840
@visibleForTesting
3941
static const MethodChannel methodChannel = MethodChannel(
4042
'plugins.flutter.io/connectivity',
4143
);
4244

45+
/// Exposed for testing purposes and should not be used by users of the plugin.
4346
@visibleForTesting
4447
static const EventChannel eventChannel = EventChannel(
4548
'plugins.flutter.io/connectivity_status',

packages/connectivity/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Flutter plugin for discovering the state of the network (WiFi &
33
mobile/cellular) connectivity on Android and iOS.
44
author: Flutter Team <flutter-dev@googlegroups.com>
55
homepage: https://github.com/flutter/plugins/tree/master/packages/connectivity
6-
version: 0.4.5+3
6+
version: 0.4.5+4
77

88
flutter:
99
plugin:

packages/google_sign_in/CHANGELOG.md renamed to packages/google_sign_in/google_sign_in/CHANGELOG.md

Lines changed: 8 additions & 0 deletions

packages/google_sign_in/README.md renamed to packages/google_sign_in/google_sign_in/README.md

Lines changed: 2 additions & 2 deletions

0 commit comments

Comments
 (0)