Unverified Commit 98f35be7 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Fix error about missing MediaQuery (#124243)

parent 2861c57a
...@@ -301,10 +301,9 @@ bool debugCheckHasMediaQuery(BuildContext context) { ...@@ -301,10 +301,9 @@ bool debugCheckHasMediaQuery(BuildContext context) {
context.describeOwnershipChain('The ownership chain for the affected widget is'), context.describeOwnershipChain('The ownership chain for the affected widget is'),
ErrorHint( ErrorHint(
'No MediaQuery ancestor could be found starting from the context ' 'No MediaQuery ancestor could be found starting from the context '
'that was passed to MediaQuery.of(). This can happen because you ' 'that was passed to MediaQuery.of(). This can happen because the '
'have not added a WidgetsApp, CupertinoApp, or MaterialApp widget ' 'context used is not a descendant of a View widget, which introduces '
'(those widgets introduce a MediaQuery), or it can happen if the ' 'a MediaQuery.'
'context you use comes from a widget above those widgets.',
), ),
]); ]);
} }
......
...@@ -116,10 +116,9 @@ void main() { ...@@ -116,10 +116,9 @@ void main() {
error.diagnostics.last.toStringDeep(), error.diagnostics.last.toStringDeep(),
equalsIgnoringHashCodes( equalsIgnoringHashCodes(
'No MediaQuery ancestor could be found starting from the context\n' 'No MediaQuery ancestor could be found starting from the context\n'
'that was passed to MediaQuery.of(). This can happen because you\n' 'that was passed to MediaQuery.of(). This can happen because the\n'
'have not added a WidgetsApp, CupertinoApp, or MaterialApp widget\n' 'context used is not a descendant of a View widget, which\n'
'(those widgets introduce a MediaQuery), or it can happen if the\n' 'introduces a MediaQuery.\n'
'context you use comes from a widget above those widgets.\n',
), ),
); );
expect( expect(
...@@ -139,10 +138,9 @@ void main() { ...@@ -139,10 +138,9 @@ void main() {
endsWith( endsWith(
'[root]"\n' // End of ownership chain. '[root]"\n' // End of ownership chain.
' No MediaQuery ancestor could be found starting from the context\n' ' No MediaQuery ancestor could be found starting from the context\n'
' that was passed to MediaQuery.of(). This can happen because you\n' ' that was passed to MediaQuery.of(). This can happen because the\n'
' have not added a WidgetsApp, CupertinoApp, or MaterialApp widget\n' ' context used is not a descendant of a View widget, which\n'
' (those widgets introduce a MediaQuery), or it can happen if the\n' ' introduces a MediaQuery.\n'
' context you use comes from a widget above those widgets.\n',
), ),
); );
} }
......
...@@ -81,10 +81,9 @@ void main() { ...@@ -81,10 +81,9 @@ void main() {
endsWith( endsWith(
'[root]"\n' // End of ownership chain. '[root]"\n' // End of ownership chain.
' No MediaQuery ancestor could be found starting from the context\n' ' No MediaQuery ancestor could be found starting from the context\n'
' that was passed to MediaQuery.of(). This can happen because you\n' ' that was passed to MediaQuery.of(). This can happen because the\n'
' have not added a WidgetsApp, CupertinoApp, or MaterialApp widget\n' ' context used is not a descendant of a View widget, which\n'
' (those widgets introduce a MediaQuery), or it can happen if the\n' ' introduces a MediaQuery.\n'
' context you use comes from a widget above those widgets.\n',
), ),
); );
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment