File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1+ ### 2.2.0 - Sep 23, 2021
2+
3+ - Update dependencies:
4+ - ` rxdart_ext ` to ` 0.1.2 ` .
5+ - ` flutter_provider ` to ` 2.1.0 ` .
6+ - Change sdk constraint ` >=2.14.0 <3.0.0 ` and flutter constraint ` >=2.5.0 ` .
7+ - Migrated from ` pedantic ` to ` flutter_lints ` .
8+ - Added ` RxStreamBuilder.checkStateStreamEnabled ` allows checking invalid state caused by ` StateStream ` s.
9+ ``` dart
10+ // enabled when running in debug or profile mode
11+ RxStreamBuilder.checkStateStreamEnabled = !kReleaseMode;
12+ ```
13+
114## 2.1.1 - May 21, 2021
215
316- Fix `RxStreamBuilder`: missing pass `Key? key` to parent constructor.
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class RxStreamBuilder<T> extends StatefulWidget {
1919 ///
2020 /// ## Example
2121 /// ```dart
22- /// // enable when running in debug or profile mode
22+ /// // enabled when running in debug or profile mode
2323 /// RxStreamBuilder.checkStateStreamEnabled = !kReleaseMode;
2424 /// ```
2525 static var checkStateStreamEnabled = false ;
You can’t perform that action at this time.
0 commit comments