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
5be898a3
Unverified
Commit
5be898a3
authored
Aug 10, 2022
by
Tomasz Gucio
Committed by
GitHub
Aug 10, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move MagnifierBuilder, MagnifierOverlayInfoBearer from text_selection.dart (#108956)
parent
b89580fb
Changes
15
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
247 additions
and
273 deletions
+247
-273
magnifier.dart
packages/flutter/lib/src/cupertino/magnifier.dart
+1
-1
text_field.dart
packages/flutter/lib/src/cupertino/text_field.dart
+2
-2
magnifier.dart
packages/flutter/lib/src/material/magnifier.dart
+3
-3
selectable_text.dart
packages/flutter/lib/src/material/selectable_text.dart
+2
-2
selection_area.dart
packages/flutter/lib/src/material/selection_area.dart
+2
-2
text_field.dart
packages/flutter/lib/src/material/text_field.dart
+2
-2
editable_text.dart
packages/flutter/lib/src/widgets/editable_text.dart
+3
-2
magnifier.dart
packages/flutter/lib/src/widgets/magnifier.dart
+127
-16
selectable_region.dart
packages/flutter/lib/src/widgets/selectable_region.dart
+4
-3
text_selection.dart
packages/flutter/lib/src/widgets/text_selection.dart
+41
-162
magnifier_test.dart
packages/flutter/test/cupertino/magnifier_test.dart
+8
-8
text_field_test.dart
packages/flutter/test/cupertino/text_field_test.dart
+7
-11
magnifier_test.dart
packages/flutter/test/material/magnifier_test.dart
+31
-41
text_field_test.dart
packages/flutter/test/material/text_field_test.dart
+8
-12
editable_text_test.dart
packages/flutter/test/widgets/editable_text_test.dart
+6
-6
No files found.
packages/flutter/lib/src/cupertino/magnifier.dart
View file @
5be898a3
...
...
@@ -20,7 +20,7 @@ import 'package:flutter/widgets.dart';
/// - has some vertical drag resistance; i.e. if a gesture is detected k units below the field,
/// then has vertical offset [dragResistance] * k.
class
CupertinoTextMagnifier
extends
StatefulWidget
{
/// Construct a [RawMagnifier] in the Cupertino style, positioning with respect to
/// Construct
s
a [RawMagnifier] in the Cupertino style, positioning with respect to
/// [magnifierOverlayInfoBearer].
///
/// The default constructor parameters and constants were eyeballed on
...
...
packages/flutter/lib/src/cupertino/text_field.dart
View file @
5be898a3
...
...
@@ -786,11 +786,11 @@ class CupertinoTextField extends StatefulWidget {
/// {@macro flutter.services.TextInputConfiguration.enableIMEPersonalizedLearning}
final
bool
enableIMEPersonalizedLearning
;
/// {@macro flutter.widgets.
text_selection
.TextMagnifierConfiguration.intro}
/// {@macro flutter.widgets.
magnifier
.TextMagnifierConfiguration.intro}
///
/// {@macro flutter.widgets.magnifier.intro}
///
/// {@macro flutter.widgets.
text_selection
.TextMagnifierConfiguration.details}
/// {@macro flutter.widgets.
magnifier
.TextMagnifierConfiguration.details}
///
/// By default, builds a [CupertinoTextMagnifier] on iOS and Android nothing on all other
/// platforms. If it is desired to supress the magnifier, consider passing
...
...
packages/flutter/lib/src/material/magnifier.dart
View file @
5be898a3
...
...
@@ -149,8 +149,8 @@ class _TextMagnifierState extends State<TextMagnifier> {
// to always stay between line start and end.
final
double
magnifierX
=
clampDouble
(
selectionInfo
.
globalGesturePosition
.
dx
,
selectionInfo
.
currentLineBoundries
.
left
,
selectionInfo
.
currentLineBoundries
.
right
);
selectionInfo
.
currentLineBound
a
ries
.
left
,
selectionInfo
.
currentLineBound
a
ries
.
right
);
// Place the magnifier at the previously calculated X, and the Y should be
// exactly at the center of the handle.
...
...
@@ -160,7 +160,7 @@ class _TextMagnifierState extends State<TextMagnifier> {
// Shift the magnifier so that, if we are ever out of the screen, we become in bounds.
// This probably won't have much of an effect on the X, since it is already bound
// to the currentLineBoundries, but will shift vertically if the magnifier is out of bounds.
// to the currentLineBound
a
ries, but will shift vertically if the magnifier is out of bounds.
final
Rect
screenBoundsAdjustedMagnifierRect
=
MagnifierController
.
shiftWithinBounds
(
bounds:
screenRect
,
rect:
unadjustedMagnifierRect
);
...
...
packages/flutter/lib/src/material/selectable_text.dart
View file @
5be898a3
...
...
@@ -430,11 +430,11 @@ class SelectableText extends StatefulWidget {
/// {@macro flutter.widgets.editableText.onSelectionChanged}
final
SelectionChangedCallback
?
onSelectionChanged
;
/// {@macro flutter.widgets.
text_selection
.TextMagnifierConfiguration.intro}
/// {@macro flutter.widgets.
magnifier
.TextMagnifierConfiguration.intro}
///
/// {@macro flutter.widgets.magnifier.intro}
///
/// {@macro flutter.widgets.
text_selection
.TextMagnifierConfiguration.details}
/// {@macro flutter.widgets.
magnifier
.TextMagnifierConfiguration.details}
///
/// By default, builds a [CupertinoTextMagnifier] on iOS and [TextMagnifier] on
/// Android, and builds nothing on all other platforms. If it is desired to supress
...
...
packages/flutter/lib/src/material/selection_area.dart
View file @
5be898a3
...
...
@@ -39,11 +39,11 @@ class SelectionArea extends StatefulWidget {
required
this
.
child
,
});
/// {@macro flutter.widgets.
text_selection
.TextMagnifierConfiguration.intro}
/// {@macro flutter.widgets.
magnifier
.TextMagnifierConfiguration.intro}
///
/// {@macro flutter.widgets.magnifier.intro}
///
/// {@macro flutter.widgets.
text_selection
.TextMagnifierConfiguration.details}
/// {@macro flutter.widgets.
magnifier
.TextMagnifierConfiguration.details}
///
/// By default, builds a [CupertinoTextMagnifier] on iOS and [TextMagnifier] on
/// Android, and builds nothing on all other platforms. If it is desired to supress
...
...
packages/flutter/lib/src/material/text_field.dart
View file @
5be898a3
...
...
@@ -393,11 +393,11 @@ class TextField extends StatefulWidget {
paste:
true
,
)));
/// {@macro flutter.widgets.
text_selection
.TextMagnifierConfiguration.intro}
/// {@macro flutter.widgets.
magnifier
.TextMagnifierConfiguration.intro}
///
/// {@macro flutter.widgets.magnifier.intro}
///
/// {@macro flutter.widgets.
text_selection
.TextMagnifierConfiguration.details}
/// {@macro flutter.widgets.
magnifier
.TextMagnifierConfiguration.details}
///
/// By default, builds a [CupertinoTextMagnifier] on iOS and [TextMagnifier] on
/// Android, and builds nothing on all other platforms. If it is desired to supress
...
...
packages/flutter/lib/src/widgets/editable_text.dart
View file @
5be898a3
...
...
@@ -27,6 +27,7 @@ import 'focus_scope.dart';
import
'focus_traversal.dart'
;
import
'framework.dart'
;
import
'localizations.dart'
;
import
'magnifier.dart'
;
import
'media_query.dart'
;
import
'scroll_configuration.dart'
;
import
'scroll_controller.dart'
;
...
...
@@ -1549,11 +1550,11 @@ class EditableText extends StatefulWidget {
/// {@macro flutter.services.TextInputConfiguration.enableIMEPersonalizedLearning}
final
bool
enableIMEPersonalizedLearning
;
/// {@macro flutter.widgets.
text_selection
.TextMagnifierConfiguration.intro}
/// {@macro flutter.widgets.
magnifier
.TextMagnifierConfiguration.intro}
///
/// {@macro flutter.widgets.magnifier.intro}
///
/// {@macro flutter.widgets.
text_selection
.TextMagnifierConfiguration.details}
/// {@macro flutter.widgets.
magnifier
.TextMagnifierConfiguration.details}
final
TextMagnifierConfiguration
magnifierConfiguration
;
bool
get
_userSelectionEnabled
=>
enableInteractiveSelection
&&
(!
readOnly
||
!
obscureText
);
...
...
packages/flutter/lib/src/widgets/magnifier.dart
View file @
5be898a3
...
...
@@ -15,6 +15,122 @@ import 'inherited_theme.dart';
import
'navigator.dart'
;
import
'overlay.dart'
;
/// {@template flutter.widgets.magnifier.MagnifierBuilder}
/// Signature for a builder that builds a [Widget] with a [MagnifierController].
///
/// Consuming [MagnifierController] or [ValueNotifier]<[MagnifierOverlayInfoBearer]> is not
/// required, although if a Widget intends to have entry or exit animations, it should take
/// [MagnifierController] and provide it an [AnimationController], so that [MagnifierController]
/// can wait before removing it from the overlay.
/// {@endtemplate}
///
/// See also:
///
/// - [MagnifierOverlayInfoBearer], the data class that updates the
/// magnifier.
typedef
MagnifierBuilder
=
Widget
?
Function
(
BuildContext
context
,
MagnifierController
controller
,
ValueNotifier
<
MagnifierOverlayInfoBearer
>
magnifierOverlayInfoBearer
,
);
/// A data class that contains the geometry information of text layouts
/// and selection gestures, used to position magnifiers.
@immutable
class
MagnifierOverlayInfoBearer
{
/// Constructs a [MagnifierOverlayInfoBearer] from provided geometry values.
const
MagnifierOverlayInfoBearer
({
required
this
.
globalGesturePosition
,
required
this
.
caretRect
,
required
this
.
fieldBounds
,
required
this
.
currentLineBoundaries
,
});
/// Const [MagnifierOverlayInfoBearer] with all values set to 0.
static
const
MagnifierOverlayInfoBearer
empty
=
MagnifierOverlayInfoBearer
(
globalGesturePosition:
Offset
.
zero
,
caretRect:
Rect
.
zero
,
currentLineBoundaries:
Rect
.
zero
,
fieldBounds:
Rect
.
zero
,
);
/// The offset of the gesture position that the magnifier should be shown at.
final
Offset
globalGesturePosition
;
/// The rect of the current line the magnifier should be shown at,
/// without taking into account any padding of the field; only the position
/// of the first and last character.
final
Rect
currentLineBoundaries
;
/// The rect of the handle that the magnifier should follow.
final
Rect
caretRect
;
/// The bounds of the entire text field that the magnifier is bound to.
final
Rect
fieldBounds
;
@override
bool
operator
==(
Object
other
)
{
if
(
identical
(
this
,
other
))
{
return
true
;
}
return
other
is
MagnifierOverlayInfoBearer
&&
other
.
globalGesturePosition
==
globalGesturePosition
&&
other
.
caretRect
==
caretRect
&&
other
.
currentLineBoundaries
==
currentLineBoundaries
&&
other
.
fieldBounds
==
fieldBounds
;
}
@override
int
get
hashCode
=>
Object
.
hash
(
globalGesturePosition
,
caretRect
,
fieldBounds
,
currentLineBoundaries
,
);
}
/// {@template flutter.widgets.magnifier.TextMagnifierConfiguration.intro}
/// A configuration object for a magnifier.
/// {@endtemplate}
///
/// {@macro flutter.widgets.magnifier.intro}
///
/// {@template flutter.widgets.magnifier.TextMagnifierConfiguration.details}
/// In general, most features of the magnifier can be configured through
/// [MagnifierBuilder]. [TextMagnifierConfiguration] is used to configure
/// the magnifier's behavior through the [SelectionOverlay].
/// {@endtemplate}
class
TextMagnifierConfiguration
{
/// Constructs a [TextMagnifierConfiguration] from parts.
///
/// If [magnifierBuilder] is null, a default [MagnifierBuilder] will be used
/// that never builds a magnifier.
const
TextMagnifierConfiguration
({
MagnifierBuilder
?
magnifierBuilder
,
this
.
shouldDisplayHandlesInMagnifier
=
true
})
:
_magnifierBuilder
=
magnifierBuilder
;
/// The passed in [MagnifierBuilder].
///
/// This is nullable because [disabled] needs to be static const,
/// so that it can be used as a default parameter. If left null,
/// the [magnifierBuilder] getter will be a function that always returns
/// null.
final
MagnifierBuilder
?
_magnifierBuilder
;
/// {@macro flutter.widgets.magnifier.MagnifierBuilder}
MagnifierBuilder
get
magnifierBuilder
=>
_magnifierBuilder
??
(
_
,
__
,
___
)
=>
null
;
/// Determines whether a magnifier should show the text editing handles or not.
final
bool
shouldDisplayHandlesInMagnifier
;
/// A constant for a [TextMagnifierConfiguration] that is disabled.
///
/// In particular, this [TextMagnifierConfiguration] is considered disabled
/// because it never builds anything, regardless of platform.
static
const
TextMagnifierConfiguration
disabled
=
TextMagnifierConfiguration
();
}
/// [MagnifierController]'s main benefit over holding a raw [OverlayEntry] is that
/// [MagnifierController] will handle logic around waiting for a magnifier to animate in or out.
///
...
...
@@ -429,29 +545,24 @@ class _DonutClip extends CustomClipper<Path> {
}
class
_Magnifier
extends
SingleChildRenderObjectWidget
{
/// Construct a [_Magnifier].
const
_Magnifier
({
super
.
child
,
required
this
.
shape
,
this
.
magnificationScale
=
1
,
this
.
focalPointOffset
=
Offset
.
zero
,
super
.
child
,
required
this
.
shape
,
this
.
magnificationScale
=
1
,
this
.
focalPointOffset
=
Offset
.
zero
,
});
/// [focalPointOffset] is the area the center of the
/// [_Magnifier] points to, relative to the center of the magnifier.
///
/// {@macro flutter.widgets.magnifier.offset}
// The Offset that the center of the _Magnifier points to, relative
// to the center of the magnifier.
final
Offset
focalPointOffset
;
/// The scale of the magnification.
///
/// A [magnificationScale] of 1 means that the content in the magnifier
/// is true to it's real size. Anything greater than one will appear bigger
/// in the magnifier, and anything less than one will appear smaller in
/// the magnifier.
// The enlarge multiplier of the magnification.
//
// If equal to 1.0, the content in the magnifier is true to its real size.
// If greater than 1.0, the content appears bigger in the magnifier.
final
double
magnificationScale
;
//
/ The shape of the magnifier is dictated by [shape.getOuterPath]
.
//
Shape of the magnifier
.
final
ShapeBorder
shape
;
@override
...
...
packages/flutter/lib/src/widgets/selectable_region.dart
View file @
5be898a3
...
...
@@ -18,6 +18,7 @@ import 'focus_manager.dart';
import
'focus_scope.dart'
;
import
'framework.dart'
;
import
'gesture_detector.dart'
;
import
'magnifier.dart'
;
import
'media_query.dart'
;
import
'overlay.dart'
;
import
'platform_selectable_region_context_menu.dart'
;
...
...
@@ -184,13 +185,13 @@ class SelectableRegion extends StatefulWidget {
this
.
magnifierConfiguration
=
TextMagnifierConfiguration
.
disabled
,
});
/// {@macro flutter.widgets.
text_selection
.TextMagnifierConfiguration.intro}
/// {@macro flutter.widgets.
magnifier
.TextMagnifierConfiguration.intro}
///
/// {@macro flutter.widgets.magnifier.intro}
///
/// By default, [SelectableRegion]'s [TextMagnifierConfiguration] is disabled.
///
/// {@macro flutter.widgets.
text_selection
.TextMagnifierConfiguration.details}
/// {@macro flutter.widgets.
magnifier
.TextMagnifierConfiguration.details}
final
TextMagnifierConfiguration
magnifierConfiguration
;
/// {@macro flutter.widgets.Focus.focusNode}
...
...
@@ -542,7 +543,7 @@ class _SelectableRegionState extends State<SelectableRegion> with TextSelectionD
globalGesturePosition:
globalGesturePosition
,
caretRect:
caretRect
,
fieldBounds:
globalTransformAsOffset
&
_selectable
!.
size
,
currentLineBoundries:
globalTransformAsOffset
&
_selectable
!.
size
,
currentLineBound
a
ries:
globalTransformAsOffset
&
_selectable
!.
size
,
);
}
...
...
packages/flutter/lib/src/widgets/text_selection.dart
View file @
5be898a3
This diff is collapsed.
Click to expand it.
packages/flutter/test/cupertino/magnifier_test.dart
View file @
5be898a3
...
...
@@ -79,7 +79,7 @@ void main() {
final
ValueNotifier
<
MagnifierOverlayInfoBearer
>
magnifier
=
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
fakeTextFieldRect
,
currentLineBound
a
ries:
fakeTextFieldRect
,
fieldBounds:
fakeTextFieldRect
,
caretRect:
fakeTextFieldRect
,
// The tap position is dragBelow units below the text field.
...
...
@@ -112,7 +112,7 @@ void main() {
tester
,
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
// The tap position is far out of the right side of the app.
...
...
@@ -145,7 +145,7 @@ void main() {
tester
,
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
// The tap position is dragBelow units below the text field.
...
...
@@ -179,7 +179,7 @@ void main() {
final
ValueNotifier
<
MagnifierOverlayInfoBearer
>
magnifierinfo
=
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
// The tap position is dragBelow units below the text field.
...
...
@@ -193,7 +193,7 @@ void main() {
// Move the gesture to one that should hide it.
magnifierinfo
.
value
=
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
globalGesturePosition:
magnifierinfo
.
value
.
globalGesturePosition
+
const
Offset
(
0
,
100
),
...
...
@@ -219,7 +219,7 @@ void main() {
final
ValueNotifier
<
MagnifierOverlayInfoBearer
>
magnifierInfo
=
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
// The tap position is dragBelow units below the text field.
...
...
@@ -232,7 +232,7 @@ void main() {
// Move the gesture to one that should hide it.
magnifierInfo
.
value
=
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
globalGesturePosition:
...
...
@@ -244,7 +244,7 @@ void main() {
// Return the gesture to one that shows it.
magnifierInfo
.
value
=
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
globalGesturePosition:
Offset
(
MediaQuery
.
of
(
context
).
size
.
width
/
2
,
...
...
packages/flutter/test/cupertino/text_field_test.dart
View file @
5be898a3
...
...
@@ -5985,11 +5985,9 @@ void main() {
defaultCupertinoTextField
.
magnifierConfiguration
!.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
const
MagnifierOverlayInfoBearer
.
empty
(),
)),
isA
<
Widget
>().
having
(
(
Widget
widget
)
=>
widget
.
key
,
'key'
,
equals
(
customMagnifier
.
key
)));
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
.
empty
),
),
isA
<
Widget
>().
having
((
Widget
widget
)
=>
widget
.
key
,
'key'
,
equals
(
customMagnifier
.
key
)));
});
group
(
'defaults'
,
()
{
...
...
@@ -6005,9 +6003,8 @@ void main() {
editableText
.
magnifierConfiguration
.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
const
MagnifierOverlayInfoBearer
.
empty
(),
)),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
.
empty
),
),
isA
<
CupertinoTextMagnifier
>());
},
variant:
const
TargetPlatformVariant
(
...
...
@@ -6026,9 +6023,8 @@ void main() {
editableText
.
magnifierConfiguration
.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
const
MagnifierOverlayInfoBearer
.
empty
(),
)),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
.
empty
),
),
isNull
);
},
variant:
TargetPlatformVariant
.
all
(
...
...
packages/flutter/test/material/magnifier_test.dart
View file @
5be898a3
...
...
@@ -55,16 +55,12 @@ void main() {
home:
Placeholder
(),
));
final
BuildContext
context
=
tester
.
firstElement
(
find
.
byType
(
Placeholder
));
final
BuildContext
context
=
tester
.
firstElement
(
find
.
byType
(
Placeholder
));
final
Widget
?
builtWidget
=
TextMagnifier
.
adaptiveMagnifierConfiguration
.
magnifierBuilder
(
final
Widget
?
builtWidget
=
TextMagnifier
.
adaptiveMagnifierConfiguration
.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
const
MagnifierOverlayInfoBearer
.
empty
(),
),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
.
empty
),
);
expect
(
builtWidget
,
isA
<
TextMagnifier
>());
...
...
@@ -76,15 +72,13 @@ void main() {
home:
Placeholder
(),
));
final
BuildContext
context
=
tester
.
firstElement
(
find
.
byType
(
Placeholder
));
final
BuildContext
context
=
tester
.
firstElement
(
find
.
byType
(
Placeholder
));
final
Widget
?
builtWidget
=
TextMagnifier
.
adaptiveMagnifierConfiguration
.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
const
MagnifierOverlayInfoBearer
.
empty
()));
final
Widget
?
builtWidget
=
TextMagnifier
.
adaptiveMagnifierConfiguration
.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
.
empty
),
);
expect
(
builtWidget
,
isA
<
CupertinoTextMagnifier
>());
},
variant:
TargetPlatformVariant
.
only
(
TargetPlatform
.
iOS
));
...
...
@@ -95,17 +89,13 @@ void main() {
home:
Placeholder
(),
));
final
BuildContext
context
=
tester
.
firstElement
(
find
.
byType
(
Placeholder
));
final
BuildContext
context
=
tester
.
firstElement
(
find
.
byType
(
Placeholder
));
final
Widget
?
builtWidget
=
TextMagnifier
.
adaptiveMagnifierConfiguration
.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
const
MagnifierOverlayInfoBearer
.
empty
(),
),
);
final
Widget
?
builtWidget
=
TextMagnifier
.
adaptiveMagnifierConfiguration
.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
.
empty
),
);
expect
(
builtWidget
,
isNull
);
},
...
...
@@ -157,7 +147,7 @@ void main() {
final
ValueNotifier
<
MagnifierOverlayInfoBearer
>
magnifierInfo
=
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
fakeTextFieldRect
,
currentLineBound
a
ries:
fakeTextFieldRect
,
fieldBounds:
fakeTextFieldRect
,
caretRect:
fakeTextFieldRect
,
// The tap position is dragBelow units below the text field.
...
...
@@ -191,9 +181,9 @@ void main() {
tester
,
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
// Inflate these two to make sure we're bounding on the
// current line boundries, not anything else.
// current line bound
a
ries, not anything else.
fieldBounds:
reasonableTextField
.
inflate
(
gestureOutsideLine
),
caretRect:
reasonableTextField
.
inflate
(
gestureOutsideLine
),
// The tap position is far out of the right side of the app.
...
...
@@ -224,9 +214,9 @@ void main() {
tester
,
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
// Inflate these two to make sure we're bounding on the
// current line boundries, not anything else.
// current line bound
a
ries, not anything else.
fieldBounds:
reasonableTextField
.
inflate
(
gestureOutsideLine
),
caretRect:
reasonableTextField
.
inflate
(
gestureOutsideLine
),
// The tap position is far out of the left side of the app.
...
...
@@ -252,7 +242,7 @@ void main() {
tester
,
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
globalGesturePosition:
reasonableTextField
.
center
,
...
...
@@ -279,7 +269,7 @@ void main() {
tester
,
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
topOfScreenTextFieldRect
,
currentLineBound
a
ries:
topOfScreenTextFieldRect
,
fieldBounds:
topOfScreenTextFieldRect
,
caretRect:
topOfScreenTextFieldRect
,
globalGesturePosition:
topOfScreenTextFieldRect
.
topCenter
,
...
...
@@ -312,7 +302,7 @@ void main() {
tester
,
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
// Gesture on the far right of the magnifier.
...
...
@@ -343,7 +333,7 @@ void main() {
tester
,
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
topOfScreenTextFieldRect
,
currentLineBound
a
ries:
topOfScreenTextFieldRect
,
fieldBounds:
topOfScreenTextFieldRect
,
caretRect:
topOfScreenTextFieldRect
,
globalGesturePosition:
topOfScreenTextFieldRect
.
topCenter
,
...
...
@@ -376,7 +366,7 @@ void main() {
tester
,
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
globalGesturePosition:
reasonableTextField
.
center
,
...
...
@@ -399,7 +389,7 @@ void main() {
final
ValueNotifier
<
MagnifierOverlayInfoBearer
>
magnifierPositioner
=
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
globalGesturePosition:
reasonableTextField
.
center
,
...
...
@@ -410,7 +400,7 @@ void main() {
// New position has a horizontal shift.
magnifierPositioner
.
value
=
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
globalGesturePosition:
...
...
@@ -435,7 +425,7 @@ void main() {
final
ValueNotifier
<
MagnifierOverlayInfoBearer
>
magnifierPositioner
=
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
globalGesturePosition:
reasonableTextField
.
center
,
...
...
@@ -446,7 +436,7 @@ void main() {
// New position has a vertical shift.
magnifierPositioner
.
value
=
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
.
shift
(
verticalShift
),
currentLineBound
a
ries:
reasonableTextField
.
shift
(
verticalShift
),
fieldBounds:
Rect
.
fromPoints
(
reasonableTextField
.
topLeft
,
reasonableTextField
.
bottomRight
+
verticalShift
),
caretRect:
reasonableTextField
.
shift
(
verticalShift
),
...
...
@@ -471,7 +461,7 @@ void main() {
final
ValueNotifier
<
MagnifierOverlayInfoBearer
>
magnifierPositioner
=
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
,
currentLineBound
a
ries:
reasonableTextField
,
fieldBounds:
reasonableTextField
,
caretRect:
reasonableTextField
,
globalGesturePosition:
reasonableTextField
.
center
,
...
...
@@ -482,7 +472,7 @@ void main() {
// New position has a vertical shift.
magnifierPositioner
.
value
=
MagnifierOverlayInfoBearer
(
currentLineBoundries:
reasonableTextField
.
shift
(
verticalShift
),
currentLineBound
a
ries:
reasonableTextField
.
shift
(
verticalShift
),
fieldBounds:
Rect
.
fromPoints
(
reasonableTextField
.
topLeft
,
reasonableTextField
.
bottomRight
+
verticalShift
),
caretRect:
reasonableTextField
.
shift
(
verticalShift
),
...
...
packages/flutter/test/material/text_field_test.dart
View file @
5be898a3
...
...
@@ -11896,9 +11896,8 @@ void main() {
textField
.
magnifierConfiguration
!.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
const
MagnifierOverlayInfoBearer
.
empty
(),
)),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
.
empty
),
),
isA
<
Widget
>().
having
(
(
Widget
widget
)
=>
widget
.
key
,
'built magnifier key equal to passed in magnifier key'
,
...
...
@@ -11918,9 +11917,8 @@ void main() {
editableText
.
magnifierConfiguration
.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
const
MagnifierOverlayInfoBearer
.
empty
(),
)),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
.
empty
),
),
isA
<
TextMagnifier
>());
},
variant:
TargetPlatformVariant
.
only
(
TargetPlatform
.
android
));
...
...
@@ -11937,9 +11935,8 @@ void main() {
editableText
.
magnifierConfiguration
.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
const
MagnifierOverlayInfoBearer
.
empty
(),
)),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
.
empty
),
),
isA
<
CupertinoTextMagnifier
>());
},
variant:
TargetPlatformVariant
.
only
(
TargetPlatform
.
iOS
));
...
...
@@ -11956,9 +11953,8 @@ void main() {
editableText
.
magnifierConfiguration
.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
const
MagnifierOverlayInfoBearer
.
empty
(),
)),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
.
empty
),
),
isNull
);
},
variant:
TargetPlatformVariant
.
all
(
excluding:
<
TargetPlatform
>{
...
...
packages/flutter/test/widgets/editable_text_test.dart
View file @
5be898a3
...
...
@@ -12667,12 +12667,12 @@ void main() {
final
BuildContext
context
=
tester
.
firstElement
(
find
.
byType
(
EditableText
));
expect
(
editableText
.
magnifierConfiguration
.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
const
MagnifierOverlayInfoBearer
.
empty
()
)
),
isNull
editableText
.
magnifierConfiguration
.
magnifierBuilder
(
context
,
MagnifierController
(),
ValueNotifier
<
MagnifierOverlayInfoBearer
>(
MagnifierOverlayInfoBearer
.
empty
)
),
isNull
,
);
});
});
...
...
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