cross_connectivity 2.0.1 cross_connectivity: ^2.0.1 copied to clipboard
A Flutter plugin for handling Connectivity and REAL Connection state in the mobile, web and desktop platforms. Supports iOS, Android, Web, Windows, Linux and macOS.
Changelog #
2.0.1 #
- Updated changelog and readme.
2.0.0 (thanks to #
-
[Breaking Change] The
getWifiName
,getWifiBSSID
andgetWifiIP
are removed to wifi_info_flutter. -
Migration guide:
If you don't use any of the above APIs, your code should work as is. In addition, you can also remove
NSLocationAlwaysAndWhenInUseUsageDescription
andNSLocationWhenInUseUsageDescription
inios/Runner/Info.plist
.If you use any of the above APIs, you can find the same APIs in the wifi_info_flutter plugin. For example, to migrate
getWifiName
, use the new plugin:final WifiInfo _wifiInfo = WifiInfo(); final String wifiName = await _wifiInfo.getWifiName();
1.1.1 (thanks to #
- Updated libs: meta, http, rxdart.
1.1.0 #
- Added
ConnectivitySettings
with configurablelookupDuration
,lookupHost
,enablePolling
.
1.0.2 #
- Removed debug printing.
1.0.1 #
- Fixed incompatibility issue with Safari and IE of NetworkInformation API.
1.0.0 #
- Created common interface for handling
Connectivity
andREAL Connection
state in the mobile, web and desktop platforms. Supports iOS, Android, Web, Windows, Linux and macOS.