You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,19 @@
1
+
## [7.19.0] - 2026-04-12
2
+
3
+
### Changed (BREAKING)
4
+
5
+
***`Connective` widget redesigned** - Flipped semantics from "show when connected" to "show when missing". Removed `onWifi`, `onMobile`, `onEthernet`, `onVpn`, `onBluetooth`, `onSatellite`, `onOther`, `onNone` parameters in favour of a single `noInternet` parameter that displays a fallback when the device has no internet (wifi, mobile, or ethernet). Migration: replace `onNone: widget` with `noInternet: widget`. Use `Connective.builder()` for any custom connectivity handling
6
+
***Removed `showLoadingOnInit` and `loadingWidget`** from `Connective` - the initial connectivity check is near-instant, making a loading state unnecessary
7
+
***`OfflineBanner` now checks for internet absence** (wifi/mobile/ethernet) rather than `NyConnectivityState.none`, correctly showing the banner when the device only has non-internet connections
8
+
9
+
### Added
10
+
11
+
***New `NyConnectivity.hasInternet()` helper** - Checks specifically for wifi, mobile, or ethernet connectivity. Stricter than `isOnline()` which passes for any non-none result
12
+
13
+
### Fixed
14
+
15
+
***`CollectionView.refreshData` state action** - Re-fetches data explicitly for both pullable and regular modes instead of relying on `reboot()`, resetting pagination, loading state, and footer state correctly
0 commit comments