Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
5575bf3c
Unverified
Commit
5575bf3c
authored
May 04, 2021
by
Ian Hickson
Committed by
GitHub
May 04, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve performance of debugCheckHasDirectionality (#81431)
parent
35ad43f2
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
52 additions
and
2 deletions
+52
-2
debug.dart
packages/flutter/lib/src/material/debug.dart
+11
-0
material.dart
packages/flutter/lib/src/material/material.dart
+2
-0
scaffold.dart
packages/flutter/lib/src/material/scaffold.dart
+6
-0
animated_list.dart
packages/flutter/lib/src/widgets/animated_list.dart
+8
-0
debug.dart
packages/flutter/lib/src/widgets/debug.dart
+6
-2
inherited_theme.dart
packages/flutter/lib/src/widgets/inherited_theme.dart
+3
-0
navigator.dart
packages/flutter/lib/src/widgets/navigator.dart
+4
-0
overlay.dart
packages/flutter/lib/src/widgets/overlay.dart
+2
-0
page_storage.dart
packages/flutter/lib/src/widgets/page_storage.dart
+2
-0
reorderable_list.dart
packages/flutter/lib/src/widgets/reorderable_list.dart
+8
-0
No files found.
packages/flutter/lib/src/material/debug.dart
View file @
5575bf3c
...
...
@@ -20,6 +20,8 @@ import 'scaffold.dart' show Scaffold, ScaffoldMessenger;
/// assert(debugCheckHasMaterial(context));
/// ```
///
/// This method can be expensive (it walks the element tree).
///
/// Does nothing if asserts are disabled. Always returns true.
bool
debugCheckHasMaterial
(
BuildContext
context
)
{
assert
(()
{
...
...
@@ -62,6 +64,11 @@ bool debugCheckHasMaterial(BuildContext context) {
/// assert(debugCheckHasMaterialLocalizations(context));
/// ```
///
/// This function has the side-effect of establishing an inheritance
/// relationship with the nearest [Localizations] widget (see
/// [BuildContext.dependOnInheritedWidgetOfExactType]). This is ok if the caller
/// always also calls [Localizations.of] or [Localizations.localeOf].
///
/// Does nothing if asserts are disabled. Always returns true.
bool
debugCheckHasMaterialLocalizations
(
BuildContext
context
)
{
assert
(()
{
...
...
@@ -102,6 +109,8 @@ bool debugCheckHasMaterialLocalizations(BuildContext context) {
/// assert(debugCheckHasScaffold(context));
/// ```
///
/// This method can be expensive (it walks the element tree).
///
/// Does nothing if asserts are disabled. Always returns true.
bool
debugCheckHasScaffold
(
BuildContext
context
)
{
assert
(()
{
...
...
@@ -133,6 +142,8 @@ bool debugCheckHasScaffold(BuildContext context) {
/// assert(debugCheckHasScaffoldMessenger(context));
/// ```
///
/// This method can be expensive (it walks the element tree).
///
/// Does nothing if asserts are disabled. Always returns true.
bool
debugCheckHasScaffoldMessenger
(
BuildContext
context
)
{
assert
(()
{
...
...
packages/flutter/lib/src/material/material.dart
View file @
5575bf3c
...
...
@@ -310,6 +310,8 @@ class Material extends StatefulWidget {
/// ```dart
/// MaterialInkController inkController = Material.of(context);
/// ```
///
/// This method can be expensive (it walks the element tree).
static
MaterialInkController
?
of
(
BuildContext
context
)
{
return
context
.
findAncestorRenderObjectOfType
<
_RenderInkFeatures
>();
}
...
...
packages/flutter/lib/src/material/scaffold.dart
View file @
5575bf3c
...
...
@@ -1820,6 +1820,8 @@ class Scaffold extends StatefulWidget {
/// If no instance of this class encloses the given context, will cause an
/// assert in debug mode, and throw an exception in release mode.
///
/// This method can be expensive (it walks the element tree).
///
/// {@tool dartpad --template=freeform}
/// Typical usage of the [Scaffold.of] function is to call it from within the
/// `build` method of a child of a [Scaffold].
...
...
@@ -1999,6 +2001,8 @@ class Scaffold extends StatefulWidget {
/// If no instance of this class encloses the given context, will return null.
/// To throw an exception instead, use [of] instead of this function.
///
/// This method can be expensive (it walks the element tree).
///
/// See also:
///
/// * [of], a similar function to this one that throws if no instance
...
...
@@ -2066,6 +2070,8 @@ class Scaffold extends StatefulWidget {
/// [Scaffold] so that the client widget gets rebuilt whenever the [hasDrawer]
/// value changes.
///
/// This method can be expensive (it walks the element tree).
///
/// See also:
///
/// * [Scaffold.of], which provides access to the [ScaffoldState] object as a
...
...
packages/flutter/lib/src/widgets/animated_list.dart
View file @
5575bf3c
...
...
@@ -392,6 +392,8 @@ class AnimatedList extends StatefulWidget {
/// If no [AnimatedList] surrounds the context given, then this function will
/// assert in debug mode and throw an exception in release mode.
///
/// This method can be expensive (it walks the element tree).
///
/// See also:
///
/// * [maybeOf], a similar function that will return null if no
...
...
@@ -429,6 +431,8 @@ class AnimatedList extends StatefulWidget {
/// If no [AnimatedList] surrounds the context given, then this function will
/// return null.
///
/// This method can be expensive (it walks the element tree).
///
/// See also:
///
/// * [of], a similar function that will throw if no [AnimatedList] ancestor
...
...
@@ -808,6 +812,8 @@ class SliverAnimatedList extends StatefulWidget {
/// If no [SliverAnimatedList] surrounds the context given, then this function
/// will assert in debug mode and throw an exception in release mode.
///
/// This method can be expensive (it walks the element tree).
///
/// See also:
///
/// * [maybeOf], a similar function that will return null if no
...
...
@@ -843,6 +849,8 @@ class SliverAnimatedList extends StatefulWidget {
/// If no [SliverAnimatedList] surrounds the context given, then this function
/// will return null.
///
/// This method can be expensive (it walks the element tree).
///
/// See also:
///
/// * [of], a similar function that will throw if no [SliverAnimatedList]
...
...
packages/flutter/lib/src/widgets/debug.dart
View file @
5575bf3c
...
...
@@ -184,6 +184,8 @@ bool debugItemsHaveDuplicateKeys(Iterable<Widget> items) {
/// assert(debugCheckHasTable(context));
/// ```
///
/// This method can be expensive (it walks the element tree).
///
/// Does nothing if asserts are disabled. Always returns true.
bool
debugCheckHasTable
(
BuildContext
context
)
{
assert
(()
{
...
...
@@ -215,7 +217,7 @@ bool debugCheckHasTable(BuildContext context) {
/// Does nothing if asserts are disabled. Always returns true.
bool
debugCheckHasMediaQuery
(
BuildContext
context
)
{
assert
(()
{
if
(
context
.
widget
is
!
MediaQuery
&&
context
.
findAncestor
WidgetOfExactType
<
MediaQuery
>()
==
null
)
{
if
(
context
.
widget
is
!
MediaQuery
&&
context
.
getElementForInherited
WidgetOfExactType
<
MediaQuery
>()
==
null
)
{
throw
FlutterError
.
fromParts
(<
DiagnosticsNode
>[
ErrorSummary
(
'No MediaQuery widget ancestor found.'
),
ErrorDescription
(
'
${context.widget.runtimeType}
widgets require a MediaQuery widget ancestor.'
),
...
...
@@ -267,7 +269,7 @@ bool debugCheckHasMediaQuery(BuildContext context) {
/// Does nothing if asserts are disabled. Always returns true.
bool
debugCheckHasDirectionality
(
BuildContext
context
,
{
String
?
why
,
String
?
hint
,
String
?
alternative
})
{
assert
(()
{
if
(
context
.
widget
is
!
Directionality
&&
context
.
findAncestor
WidgetOfExactType
<
Directionality
>()
==
null
)
{
if
(
context
.
widget
is
!
Directionality
&&
context
.
getElementForInherited
WidgetOfExactType
<
Directionality
>()
==
null
)
{
why
=
why
==
null
?
''
:
'
$why
'
;
throw
FlutterError
.
fromParts
(<
DiagnosticsNode
>[
ErrorSummary
(
'No Directionality widget found.'
),
...
...
@@ -373,6 +375,8 @@ bool debugCheckHasWidgetsLocalizations(BuildContext context) {
/// assert(debugCheckHasOverlay(context));
/// ```
///
/// This method can be expensive (it walks the element tree).
///
/// Does nothing if asserts are disabled. Always returns true.
bool
debugCheckHasOverlay
(
BuildContext
context
)
{
assert
(()
{
...
...
packages/flutter/lib/src/widgets/inherited_theme.dart
View file @
5575bf3c
...
...
@@ -146,6 +146,9 @@ abstract class InheritedTheme extends InheritedWidget {
/// this method is called again to re-capture the updated themes.
///
/// To wrap a [Widget] in the captured themes, call [CapturedThemes.wrap].
///
/// This method can be expensive if there are many widgets between `from` and
/// `to` (it walks the element tree between those nodes).
static
CapturedThemes
capture
({
required
BuildContext
from
,
required
BuildContext
?
to
})
{
assert
(
from
!=
null
);
...
...
packages/flutter/lib/src/widgets/navigator.dart
View file @
5575bf3c
...
...
@@ -2712,6 +2712,8 @@ class Navigator extends StatefulWidget {
///
/// If there is no [Navigator] in the give `context`, this function will throw
/// a [FlutterError] in debug mode, and an exception in release mode.
///
/// This method can be expensive (it walks the element tree).
static
NavigatorState
of
(
BuildContext
context
,
{
bool
rootNavigator
=
false
,
...
...
@@ -2760,6 +2762,8 @@ class Navigator extends StatefulWidget {
/// subsequent instances of [Navigator].
///
/// Will return null if there is no ancestor [Navigator] in the `context`.
///
/// This method can be expensive (it walks the element tree).
static
NavigatorState
?
maybeOf
(
BuildContext
context
,
{
bool
rootNavigator
=
false
,
...
...
packages/flutter/lib/src/widgets/overlay.dart
View file @
5575bf3c
...
...
@@ -284,6 +284,8 @@ class Overlay extends StatefulWidget {
/// If `rootOverlay` is set to true, the state from the furthest instance of
/// this class is given instead. Useful for installing overlay entries
/// above all subsequent instances of [Overlay].
///
/// This method can be expensive (it walks the element tree).
static
OverlayState
?
of
(
BuildContext
context
,
{
bool
rootOverlay
=
false
,
...
...
packages/flutter/lib/src/widgets/page_storage.dart
View file @
5575bf3c
...
...
@@ -267,6 +267,8 @@ class PageStorage extends StatelessWidget {
/// ```dart
/// PageStorageBucket bucket = PageStorage.of(context);
/// ```
///
/// This method can be expensive (it walks the element tree).
static
PageStorageBucket
?
of
(
BuildContext
context
)
{
final
PageStorage
?
widget
=
context
.
findAncestorWidgetOfExactType
<
PageStorage
>();
return
widget
?.
bucket
;
...
...
packages/flutter/lib/src/widgets/reorderable_list.dart
View file @
5575bf3c
...
...
@@ -233,6 +233,8 @@ class ReorderableList extends StatefulWidget {
/// If no [ReorderableList] surrounds the given context, then this function
/// will assert in debug mode and throw an exception in release mode.
///
/// This method can be expensive (it walks the element tree).
///
/// See also:
///
/// * [maybeOf], a similar function that will return null if no
...
...
@@ -270,6 +272,8 @@ class ReorderableList extends StatefulWidget {
/// If no [ReorderableList] surrounds the context given, then this function will
/// return null.
///
/// This method can be expensive (it walks the element tree).
///
/// See also:
///
/// * [of], a similar function that will throw if no [ReorderableList] ancestor
...
...
@@ -435,6 +439,8 @@ class SliverReorderableList extends StatefulWidget {
/// If no [SliverReorderableList] surrounds the context given, this function
/// will assert in debug mode and throw an exception in release mode.
///
/// This method can be expensive (it walks the element tree).
///
/// See also:
///
/// * [maybeOf], a similar function that will return null if no
...
...
@@ -474,6 +480,8 @@ class SliverReorderableList extends StatefulWidget {
/// If no [SliverReorderableList] surrounds the context given, this function
/// will return null.
///
/// This method can be expensive (it walks the element tree).
///
/// See also:
///
/// * [of], a similar function that will throw if no [SliverReorderableList]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment