Skip to content

Commit 52aad13

Browse files
authored
Merge branch 'main' into fix/share
2 parents 34a36e5 + 72b6234 commit 52aad13

8 files changed

Lines changed: 27 additions & 27 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ support for more platforms and better maintenance.
4242

4343
> [![battery_plus][battery_plus_badge_pub]][battery_plus] [![pub points][battery_plus_badge_pub_points]][battery_plus_pub_points]
4444
45-
Flutter plugin for accessing information about the battery state(full, charging, discharging) on Android and iOS.
45+
Flutter plugin for accessing information about the battery state (full, charging, discharging) on Android and iOS.
4646

4747
[[readme][battery_plus_readme]] [[code][battery_plus_code]]
4848

4949
#### Platform Support
5050

51-
| Android | iOS | MacOS | Web | Linux | Windows |
51+
| Android | iOS | macOS | Web | Linux | Windows |
5252
| :-----: | :-: | :---: | :-: | :---: | :-----: |
5353
|||||||
5454

@@ -65,7 +65,7 @@ mobile/cellular) connectivity on Android and iOS.
6565

6666
#### Platform Support
6767

68-
| Android | iOS | MacOS | Web | Linux | Windows |
68+
| Android | iOS | macOS | Web | Linux | Windows |
6969
| :-----: | :-: | :---: | :-: | :---: | :-----: |
7070
|||||||
7171

@@ -82,7 +82,7 @@ Flutter plugin providing detailed information about the device
8282

8383
#### Platform Support
8484

85-
| Android | iOS | MacOS | Web | Linux | Windows |
85+
| Android | iOS | macOS | Web | Linux | Windows |
8686
| :-----: | :-: | :---: | :-: | :---: | :-----: |
8787
|||||||
8888

@@ -98,7 +98,7 @@ Flutter plugin for discovering network info.
9898

9999
#### Platform Support
100100

101-
| Android | iOS | MacOS | Web | Linux | Windows |
101+
| Android | iOS | macOS | Web | Linux | Windows |
102102
| :-----: | :-: | :---: | :-: | :---: | :-----: |
103103
|||||||
104104

@@ -115,7 +115,7 @@ package, such as CFBundleVersion on iOS or versionCode on Android.
115115

116116
#### Platform Support
117117

118-
| Android | iOS | MacOS | Web | Linux | Windows |
118+
| Android | iOS | macOS | Web | Linux | Windows |
119119
| :-----: | :-: | :---: | :-: | :---: | :-----: |
120120
|||||||
121121

@@ -131,7 +131,7 @@ Flutter plugin for accessing accelerometer, gyroscope, magnetometer and baromete
131131

132132
#### Platform Support
133133

134-
| Android | iOS | MacOS | Web | Linux | Windows |
134+
| Android | iOS | macOS | Web | Linux | Windows |
135135
| :-----: | :-: | :---: | :-: | :---: | :-----: |
136136
|||||||
137137

@@ -147,7 +147,7 @@ Flutter plugin for sharing content via the platform share UI, using the ACTION_S
147147

148148
#### Platform Support
149149

150-
| Android | iOS | MacOS | Web | Linux | Windows |
150+
| Android | iOS | macOS | Web | Linux | Windows |
151151
| :-----: | :-: | :---: | :-: | :---: | :-----: |
152152
|||||||
153153

packages/battery_plus/battery_plus/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A Flutter plugin to access various information about the battery of the device t
1010

1111
## Platform Support
1212

13-
| Android | iOS | MacOS | Web | Linux | Windows |
13+
| Android | iOS | macOS | Web | Linux | Windows |
1414
| :-----: | :-: | :---: | :-: | :---: | :----: |
1515
|||||||
1616

@@ -19,7 +19,7 @@ A Flutter plugin to access various information about the battery of the device t
1919
- Flutter >=3.22.0
2020
- Dart >=3.4.0 <4.0.0
2121
- iOS >=12.0
22-
- MacOS >=10.14
22+
- macOS >=10.14
2323
- Android `compileSDK` 34
2424
- Java 17
2525
- Android Gradle Plugin >=8.3.0
@@ -47,7 +47,7 @@ battery.onBatteryStateChanged.listen((BatteryState state) {
4747
});
4848
4949
// Check if device in battery save mode
50-
// Currently available on Android, iOS, MacOS and Windows platforms only
50+
// Currently available on Android, iOS, macOS and Windows platforms only
5151
print(await battery.isInBatterySaveMode);
5252
```
5353

packages/connectivity_plus/connectivity_plus/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This plugin allows Flutter apps to discover network connectivity types that can
1616
1717
## Platform Support
1818

19-
| Android | iOS | MacOS | Web | Linux | Windows |
19+
| Android | iOS | macOS | Web | Linux | Windows |
2020
| :-----: | :-: | :---: | :-: | :---: | :-----: |
2121
|||||||
2222

@@ -25,7 +25,7 @@ This plugin allows Flutter apps to discover network connectivity types that can
2525
- Flutter >=3.19.0
2626
- Dart >=3.3.0 <4.0.0
2727
- iOS >=12.0
28-
- MacOS >=10.14
28+
- macOS >=10.14
2929
- Android `compileSDK` 34
3030
- Java 17
3131
- Android Gradle Plugin >=8.3.0
@@ -103,7 +103,7 @@ class _MyWidgetState extends State<MyWidget> {
103103

104104
The following table shows which `ConnectivityResult` values are supported per platform.
105105

106-
| | Android | iOS | Web | MacOS | Windows | Linux |
106+
| | Android | iOS | Web | macOS | Windows | Linux |
107107
|-----------|:-------:|:---:|:---:|:-----:|:-------:|:-----:|
108108
| wifi | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
109109
| bluetooth | :white_check_mark: | | | | | :white_check_mark: |
@@ -118,11 +118,11 @@ _`none` is supported on all platforms by default._
118118

119119
Connectivity changes are no longer communicated to Android apps in the background starting with Android O (8.0). You should always check for connectivity status when your app is resumed. The broadcast is only useful when your application is in the foreground.
120120

121-
### iOS & MacOS
121+
### iOS & macOS
122122

123123
On iOS simulators, the connectivity types stream might not update when Wi-Fi status changes. This is a known issue.
124124

125-
Starting with iOS 12 and MacOS 10.14, the implementation uses `NWPathMonitor` to obtain the enabled connectivity types. We noticed that this observer can give multiple or unreliable results. For example, reporting connectivity "none" followed by connectivity "wifi" right after reconnecting.
125+
Starting with iOS 12 and macOS 10.14, the implementation uses `NWPathMonitor` to obtain the enabled connectivity types. We noticed that this observer can give multiple or unreliable results. For example, reporting connectivity "none" followed by connectivity "wifi" right after reconnecting.
126126

127127
We recommend to use the `onConnectivityChanged` with this limitation in mind, as the method doesn't filter events, nor it ensures distinct values.
128128

packages/device_info_plus/device_info_plus/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Get current device information from within the Flutter application.
1010

1111
## Platform Support
1212

13-
| Android | iOS | MacOS | Web | Linux | Windows |
13+
| Android | iOS | macOS | Web | Linux | Windows |
1414
| :-----: | :-: | :---: | :-: | :---: | :-----: |
1515
|||||||
1616

@@ -19,7 +19,7 @@ Get current device information from within the Flutter application.
1919
- Flutter >=3.29.0
2020
- Dart >=3.7.0 <4.0.0
2121
- iOS >=12.0
22-
- MacOS >=10.14
22+
- macOS >=10.14
2323
- Android `compileSDK` 34
2424
- Java 17
2525
- Android Gradle Plugin >=8.3.0

packages/network_info_plus/network_info_plus/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ themselves accordingly.
1111

1212
## Platform Support
1313

14-
| Android | iOS | MacOS | Web | Linux | Windows |
14+
| Android | iOS | macOS | Web | Linux | Windows |
1515
| :-----: | :-: | :---: | :-: | :---: | :----: |
1616
|||||||
1717

@@ -22,7 +22,7 @@ The functionality is not supported on Web.
2222
- Flutter >=3.3.0
2323
- Dart >=2.18.0 <4.0.0
2424
- iOS >=12.0
25-
- MacOS >=10.14
25+
- macOS >=10.14
2626
- Android `compileSDK` 34
2727
- Java 17
2828
- Android Gradle Plugin >=8.3.0

packages/package_info_plus/package_info_plus/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This Flutter plugin provides an API for querying information about an applicatio
1010

1111
## Platform Support
1212

13-
| Android | iOS | MacOS | Web | Linux | Windows |
13+
| Android | iOS | macOS | Web | Linux | Windows |
1414
| :-----: | :---: | :---: | :---: | :---: | :-----: |
1515
|||||||
1616

@@ -19,7 +19,7 @@ This Flutter plugin provides an API for querying information about an applicatio
1919
- Flutter >=3.19.0
2020
- Dart >=3.3.0 <4.0.0
2121
- iOS >=12.0
22-
- MacOS >=10.14
22+
- macOS >=10.14
2323
- Android `compileSDK` 34
2424
- Java 17
2525
- Android Gradle Plugin >=8.3.0
@@ -55,7 +55,7 @@ String buildNumber = packageInfo.buildNumber;
5555
#### Plugin returns incorrect app version
5656

5757
Flutter build tools allow only digits and `.` (dot) symbols to be used in `version`
58-
of `pubspec.yaml` on iOS/MacOS to comply with official version format from Apple.
58+
of `pubspec.yaml` on iOS/macOS to comply with official version format from Apple.
5959

6060
More info available in [this comment](https://github.com/fluttercommunity/plus_plugins/issues/389#issuecomment-1106764429)
6161

packages/sensors_plus/sensors_plus/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ barometer sensors.
1111

1212
## Platform Support
1313

14-
| Android | iOS | MacOS | Web | Linux | Windows |
14+
| Android | iOS | macOS | Web | Linux | Windows |
1515
| :-----: | :---: | :---: | :---: | :---: | :-----: |
1616
||||* |||
1717

@@ -22,7 +22,7 @@ barometer sensors.
2222
- Flutter >=3.19.0
2323
- Dart >=3.3.0 <4.0.0
2424
- iOS >=12.0
25-
- MacOS >=10.14
25+
- macOS >=10.14
2626
- Android `compileSDK` 34
2727
- Java 17
2828
- Android Gradle Plugin >=8.3.0

packages/share_plus/share_plus/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on iOS, or equivalent platform content sharing methods.
1414

1515
## Platform Support
1616

17-
| Shared content | Android | iOS | MacOS | Web | Linux | Windows |
17+
| Shared content | Android | iOS | macOS | Web | Linux | Windows |
1818
| :------------: | :-----: | :-: | :---: | :-: | :---: | :-----: |
1919
| Text |||||||
2020
| URI |||| As text | As text | As text |
@@ -29,7 +29,7 @@ Sharing files is not supported on Linux.
2929
- Flutter >=3.22.0
3030
- Dart >=3.4.0 <4.0.0
3131
- iOS >=12.0
32-
- MacOS >=10.14
32+
- macOS >=10.14
3333
- Android `compileSDK` 34
3434
- Java 17
3535
- Android Gradle Plugin >=8.3.0

0 commit comments

Comments
 (0)