cross_connectivity 2.0.0
cross_connectivity: ^2.0.0 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.0 (thanks to cbenhagen) #
-
[Breaking Change] The
getWifiName,getWifiBSSIDandgetWifiIPare 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
NSLocationAlwaysAndWhenInUseUsageDescriptionandNSLocationWhenInUseUsageDescriptioninios/Runner/Info.plistIf 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 otopba) #
- Update libs: meta, http, rxdart
1.1.0 #
- Added
ConnectivitySettingswith 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
ConnectivityandREAL Connectionstate in the mobile, web and desktop platforms. Supports iOS, Android, Web, Windows, Linux and macOS.