- 20 Aug, 2021 1 commit
-
-
Jonah Williams authored
Co-authored-by:
Zachary Anderson <zanderso@users.noreply.github.com>
-
- 09 Aug, 2021 1 commit
-
-
Jonah Williams authored
-
- 15 Jul, 2021 1 commit
-
- 14 Jul, 2021 3 commits
-
-
Ian Hickson authored
-
Zachary Anderson authored
This reverts commit 31de052e.
-
Ian Hickson authored
-
- 13 Jul, 2021 2 commits
-
-
Ian Hickson authored
This reverts commit e2490f29.
-
Ian Hickson authored
-
- 14 May, 2021 1 commit
-
-
xubaolin authored
-
- 13 May, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 07 May, 2021 1 commit
-
-
Kate Lovett authored
-
- 03 May, 2021 1 commit
-
-
Jonah Williams authored
-
- 03 Apr, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 02 Apr, 2021 1 commit
-
-
Kate Lovett authored
-
- 23 Jan, 2021 1 commit
-
-
Paul Berry authored
-
- 14 Jan, 2021 1 commit
-
-
xubaolin authored
-
- 05 Jan, 2021 1 commit
-
-
Sam Rawlins authored
-
- 17 Dec, 2020 1 commit
-
-
Paul Berry authored
Fix flutter in preparation for implementing Dart's "Infer non-nullability from local boolean variables" (#72494) When https://github.com/dart-lang/language/issues/1274 (Infer non-nullability from local boolean variables) is implemented, flow analysis will detect that code like this no longer needs to perform a null check: final bool contextIsValid = focus != null && focus.context != null; ... if (contextIsValid) { ... focus! ... // Null check unnecessary } To avoid a build failure due to the unnecessary null check, we need to temporarily write it in a way that we can ignore it. Once the feature is complete and rolled into flutter, I'll remove the null check entirely.
-
- 21 Nov, 2020 1 commit
-
-
Kate Lovett authored
-
- 20 Nov, 2020 1 commit
-
-
Kate Lovett authored
-
- 17 Nov, 2020 1 commit
-
-
Jim Graham authored
This reverts commit 9b56241e.
-
- 16 Nov, 2020 1 commit
-
-
Kate Lovett authored
-
- 12 Nov, 2020 1 commit
-
-
Zachary Anderson authored
This reverts commit 1f0df545.
-
- 11 Nov, 2020 1 commit
-
-
Kate Lovett authored
-
- 05 Nov, 2020 1 commit
-
-
LongCatIsLooong authored
-
- 02 Nov, 2020 2 commits
-
-
Greg Spencer authored
-
YeungKC authored
-
- 21 Oct, 2020 1 commit
-
-
Michael Goderbauer authored
-
- 10 Oct, 2020 1 commit
-
- 29 Sep, 2020 1 commit
-
- 28 Sep, 2020 1 commit
-
-
xubaolin authored
-
- 27 Sep, 2020 1 commit
-
-
Alexandre Ardhuin authored
* apply upcoming lint cast_nullable_to_non_nullable * make RenderObjectElement.renderObject non-nullable
-
- 15 Sep, 2020 1 commit
-
-
Alexandre Ardhuin authored
* Reland "Nnbd widgets (#64672)" This reverts commit 127e6790. * remove non-nullable enforcement on AsyncSnapshot * make data param non-nullable for AsyncSnapshot.withData * make some Text params non-nullable
-
- 09 Sep, 2020 2 commits
-
-
Michael Goderbauer authored
This reverts commit e682ec71.
-
Alexandre Ardhuin authored
* migrate widget to nullsafety * remove double blank line after license * address review comments in actions.dart * nullable ObjectKey.value * use local variable oldElement * make State.build non-nullable * make State.context non-nullable * newline at eof * make ProxyWidget.child non-nullable * make _InactiveElements.debugContains non-nullable * make Element.depth non-nullable * make ProxyElement.build non-nullable * make StatefulElement.state non-nullable * remove 'Notice that' * avoid cast of list in RenderObjectElement.updateChildren * make IndexedSlot.value non-nullable * avoid cast of list in MultiChildRenderObjectElement.mount * make some WidgetsApp parameters non-nullable * hitTest take non-nullable position * make ScrollableState.position non-nullable * use _pixels instead of pixels * make ViewportOffset.pixels non-nullable * make param and return type of IndexedWidgetBuilder non-nullable * unused_import * make context param non-nullable for Builder in animated_list.dart * make ScrollMetrics.viewportDimension non-nullable * make ScrollMetrics.{min,max}ScrollExtent non-nullable * make _Location.file non-nullable * _WidgetForTypeTests.createElement throw UnimplementedError * update _NullWidget.build error message * make _ShortcutsState.manager non-nullable * Fix childCount issues for NNBD * fix childCount computation on web * increase max value on js side to compute childCount * make aspect parameter of dependOnInheritedWidgetOfExactType nullable * merge has{min,max}ScrollExtent into hasScrollExtents * update focus_manager.dart * address review comments in icon.dart * address review comments in image.dart * address review comments in routes.dart * address review comments in scroll_activity.dart * update doc comments * make UserScrollNotification.direction non-nullable and required * rename hasScrollExtents to hasContentDimensions * unnecessary late Co-authored-by:
Ian Hickson <ian@hixie.ch>
-
- 07 Sep, 2020 1 commit
-
-
Ian Hickson authored
-
- 13 Aug, 2020 2 commits
-
-
Michael Goderbauer authored
-
renyou authored
-
- 12 Aug, 2020 1 commit
-
-
LongCatIsLooong authored
-
- 11 Aug, 2020 1 commit
-
-
Ian Hickson authored
It now uses the scroll metrics as they stood at the end of the last frame. It previously used a weird combination of the old extents and the newish position, which led to some weird effects when the position had been changed in expectation of a viewport or content dimension change.
-