Commit 3e2dc8ca authored by Greg Spencer's avatar Greg Spencer Committed by Jonah Williams

Revert ActivateAction PR (#41945)

parent 780bddcc
This diff is collapsed.
...@@ -474,43 +474,45 @@ class _BottomNavigationTile extends StatelessWidget { ...@@ -474,43 +474,45 @@ class _BottomNavigationTile extends StatelessWidget {
child: Semantics( child: Semantics(
container: true, container: true,
selected: selected, selected: selected,
child: Stack( child: Focus(
children: <Widget>[ child: Stack(
InkResponse( children: <Widget>[
onTap: onTap, InkResponse(
child: Padding( onTap: onTap,
padding: EdgeInsets.only(top: topPadding, bottom: bottomPadding), child: Padding(
child: Column( padding: EdgeInsets.only(top: topPadding, bottom: bottomPadding),
crossAxisAlignment: CrossAxisAlignment.center, child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween, crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min, mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[ mainAxisSize: MainAxisSize.min,
_TileIcon( children: <Widget>[
colorTween: colorTween, _TileIcon(
animation: animation, colorTween: colorTween,
iconSize: iconSize, animation: animation,
selected: selected, iconSize: iconSize,
item: item, selected: selected,
selectedIconTheme: selectedIconTheme, item: item,
unselectedIconTheme: unselectedIconTheme, selectedIconTheme: selectedIconTheme,
), unselectedIconTheme: unselectedIconTheme,
_Label( ),
colorTween: colorTween, _Label(
animation: animation, colorTween: colorTween,
item: item, animation: animation,
selectedLabelStyle: selectedLabelStyle, item: item,
unselectedLabelStyle: unselectedLabelStyle, selectedLabelStyle: selectedLabelStyle,
showSelectedLabels: showSelectedLabels, unselectedLabelStyle: unselectedLabelStyle,
showUnselectedLabels: showUnselectedLabels, showSelectedLabels: showSelectedLabels,
), showUnselectedLabels: showUnselectedLabels,
], ),
],
),
), ),
), ),
), Semantics(
Semantics( label: indexLabel,
label: indexLabel, ),
), ],
], ),
), ),
), ),
); );
......
...@@ -330,37 +330,39 @@ class _RawMaterialButtonState extends State<RawMaterialButton> { ...@@ -330,37 +330,39 @@ class _RawMaterialButtonState extends State<RawMaterialButton> {
final Color effectiveTextColor = MaterialStateProperty.resolveAs<Color>(widget.textStyle?.color, _states); final Color effectiveTextColor = MaterialStateProperty.resolveAs<Color>(widget.textStyle?.color, _states);
final ShapeBorder effectiveShape = MaterialStateProperty.resolveAs<ShapeBorder>(widget.shape, _states); final ShapeBorder effectiveShape = MaterialStateProperty.resolveAs<ShapeBorder>(widget.shape, _states);
final Widget result = ConstrainedBox( final Widget result = Focus(
constraints: widget.constraints, focusNode: widget.focusNode,
child: Material( canRequestFocus: widget.enabled,
elevation: _effectiveElevation, onFocusChange: _handleFocusedChanged,
textStyle: widget.textStyle?.copyWith(color: effectiveTextColor), autofocus: widget.autofocus,
shape: effectiveShape, child: ConstrainedBox(
color: widget.fillColor, constraints: widget.constraints,
type: widget.fillColor == null ? MaterialType.transparency : MaterialType.button, child: Material(
animationDuration: widget.animationDuration, elevation: _effectiveElevation,
clipBehavior: widget.clipBehavior, textStyle: widget.textStyle?.copyWith(color: effectiveTextColor),
child: InkWell( shape: effectiveShape,
focusNode: widget.focusNode, color: widget.fillColor,
canRequestFocus: widget.enabled, type: widget.fillColor == null ? MaterialType.transparency : MaterialType.button,
onFocusChange: _handleFocusedChanged, animationDuration: widget.animationDuration,
autofocus: widget.autofocus, clipBehavior: widget.clipBehavior,
onHighlightChanged: _handleHighlightChanged, child: InkWell(
splashColor: widget.splashColor, onHighlightChanged: _handleHighlightChanged,
highlightColor: widget.highlightColor, splashColor: widget.splashColor,
focusColor: widget.focusColor, highlightColor: widget.highlightColor,
hoverColor: widget.hoverColor, focusColor: widget.focusColor,
onHover: _handleHoveredChanged, hoverColor: widget.hoverColor,
onTap: widget.onPressed, onHover: _handleHoveredChanged,
customBorder: effectiveShape, onTap: widget.onPressed,
child: IconTheme.merge( customBorder: effectiveShape,
data: IconThemeData(color: effectiveTextColor), child: IconTheme.merge(
child: Container( data: IconThemeData(color: effectiveTextColor),
padding: widget.padding, child: Container(
child: Center( padding: widget.padding,
widthFactor: 1.0, child: Center(
heightFactor: 1.0, widthFactor: 1.0,
child: widget.child, heightFactor: 1.0,
child: widget.child,
),
), ),
), ),
), ),
......
...@@ -1774,71 +1774,73 @@ class _RawChipState extends State<RawChip> with TickerProviderStateMixin<RawChip ...@@ -1774,71 +1774,73 @@ class _RawChipState extends State<RawChip> with TickerProviderStateMixin<RawChip
final Color resolvedLabelColor = MaterialStateProperty.resolveAs<Color>(effectiveLabelStyle?.color, _states); final Color resolvedLabelColor = MaterialStateProperty.resolveAs<Color>(effectiveLabelStyle?.color, _states);
final TextStyle resolvedLabelStyle = effectiveLabelStyle?.copyWith(color: resolvedLabelColor); final TextStyle resolvedLabelStyle = effectiveLabelStyle?.copyWith(color: resolvedLabelColor);
Widget result = Material( Widget result = Focus(
elevation: isTapping ? pressElevation : elevation, onFocusChange: _handleFocus,
shadowColor: widget.selected ? selectedShadowColor : shadowColor, focusNode: widget.focusNode,
animationDuration: pressedAnimationDuration, autofocus: widget.autofocus,
shape: shape, canRequestFocus: widget.isEnabled,
clipBehavior: widget.clipBehavior, child: Material(
child: InkWell( elevation: isTapping ? pressElevation : elevation,
onFocusChange: _handleFocus, shadowColor: widget.selected ? selectedShadowColor : shadowColor,
focusNode: widget.focusNode, animationDuration: pressedAnimationDuration,
autofocus: widget.autofocus, shape: shape,
canRequestFocus: widget.isEnabled, clipBehavior: widget.clipBehavior,
onTap: canTap ? _handleTap : null, child: InkWell(
onTapDown: canTap ? _handleTapDown : null, onTap: canTap ? _handleTap : null,
onTapCancel: canTap ? _handleTapCancel : null, onTapDown: canTap ? _handleTapDown : null,
onHover: canTap ? _handleHover : null, onTapCancel: canTap ? _handleTapCancel : null,
customBorder: shape, onHover: canTap ? _handleHover : null,
child: AnimatedBuilder( customBorder: shape,
animation: Listenable.merge(<Listenable>[selectController, enableController]), child: AnimatedBuilder(
builder: (BuildContext context, Widget child) { animation: Listenable.merge(<Listenable>[selectController, enableController]),
return Container( builder: (BuildContext context, Widget child) {
decoration: ShapeDecoration( return Container(
shape: shape, decoration: ShapeDecoration(
color: getBackgroundColor(chipTheme), shape: shape,
), color: getBackgroundColor(chipTheme),
child: child,
);
},
child: _wrapWithTooltip(
widget.tooltip,
widget.onPressed,
_ChipRenderWidget(
theme: _ChipRenderTheme(
label: DefaultTextStyle(
overflow: TextOverflow.fade,
textAlign: TextAlign.start,
maxLines: 1,
softWrap: false,
style: resolvedLabelStyle,
child: widget.label,
),
avatar: AnimatedSwitcher(
child: widget.avatar,
duration: _kDrawerDuration,
switchInCurve: Curves.fastOutSlowIn,
), ),
deleteIcon: AnimatedSwitcher( child: child,
child: _buildDeleteIcon(context, theme, chipTheme), );
duration: _kDrawerDuration, },
switchInCurve: Curves.fastOutSlowIn, child: _wrapWithTooltip(
widget.tooltip,
widget.onPressed,
_ChipRenderWidget(
theme: _ChipRenderTheme(
label: DefaultTextStyle(
overflow: TextOverflow.fade,
textAlign: TextAlign.start,
maxLines: 1,
softWrap: false,
style: resolvedLabelStyle,
child: widget.label,
),
avatar: AnimatedSwitcher(
child: widget.avatar,
duration: _kDrawerDuration,
switchInCurve: Curves.fastOutSlowIn,
),
deleteIcon: AnimatedSwitcher(
child: _buildDeleteIcon(context, theme, chipTheme),
duration: _kDrawerDuration,
switchInCurve: Curves.fastOutSlowIn,
),
brightness: chipTheme.brightness,
padding: (widget.padding ?? chipTheme.padding).resolve(textDirection),
labelPadding: (widget.labelPadding ?? chipTheme.labelPadding).resolve(textDirection),
showAvatar: hasAvatar,
showCheckmark: showCheckmark,
checkmarkColor: checkmarkColor,
canTapBody: canTap,
), ),
brightness: chipTheme.brightness, value: widget.selected,
padding: (widget.padding ?? chipTheme.padding).resolve(textDirection), checkmarkAnimation: checkmarkAnimation,
labelPadding: (widget.labelPadding ?? chipTheme.labelPadding).resolve(textDirection), enableAnimation: enableAnimation,
showAvatar: hasAvatar, avatarDrawerAnimation: avatarDrawerAnimation,
showCheckmark: showCheckmark, deleteDrawerAnimation: deleteDrawerAnimation,
checkmarkColor: checkmarkColor, isEnabled: widget.isEnabled,
canTapBody: canTap, avatarBorder: widget.avatarBorder,
), ),
value: widget.selected,
checkmarkAnimation: checkmarkAnimation,
enableAnimation: enableAnimation,
avatarDrawerAnimation: avatarDrawerAnimation,
deleteDrawerAnimation: deleteDrawerAnimation,
isEnabled: widget.isEnabled,
avatarBorder: widget.avatarBorder,
), ),
), ),
), ),
......
...@@ -309,20 +309,22 @@ class IconButton extends StatelessWidget { ...@@ -309,20 +309,22 @@ class IconButton extends StatelessWidget {
return Semantics( return Semantics(
button: true, button: true,
enabled: onPressed != null, enabled: onPressed != null,
child: InkResponse( child: Focus(
focusNode: focusNode, focusNode: focusNode,
autofocus: autofocus, autofocus: autofocus,
canRequestFocus: onPressed != null, canRequestFocus: onPressed != null,
onTap: onPressed, child: InkResponse(
child: result, onTap: onPressed,
focusColor: focusColor ?? Theme.of(context).focusColor, child: result,
hoverColor: hoverColor ?? Theme.of(context).hoverColor, focusColor: focusColor ?? Theme.of(context).focusColor,
highlightColor: highlightColor ?? Theme.of(context).highlightColor, hoverColor: hoverColor ?? Theme.of(context).hoverColor,
splashColor: splashColor ?? Theme.of(context).splashColor, highlightColor: highlightColor ?? Theme.of(context).highlightColor,
radius: math.max( splashColor: splashColor ?? Theme.of(context).splashColor,
Material.defaultSplashRadius, radius: math.max(
(iconSize + math.min(padding.horizontal, padding.vertical)) * 0.7, Material.defaultSplashRadius,
// x 0.5 for diameter -> radius and + 40% overflow derived from other Material apps. (iconSize + math.min(padding.horizontal, padding.vertical)) * 0.7,
// x 0.5 for diameter -> radius and + 40% overflow derived from other Material apps.
),
), ),
), ),
); );
......
...@@ -210,16 +210,10 @@ class InkResponse extends StatefulWidget { ...@@ -210,16 +210,10 @@ class InkResponse extends StatefulWidget {
this.splashFactory, this.splashFactory,
this.enableFeedback = true, this.enableFeedback = true,
this.excludeFromSemantics = false, this.excludeFromSemantics = false,
this.focusNode,
this.canRequestFocus = true,
this.onFocusChange,
this.autofocus = false,
}) : assert(containedInkWell != null), }) : assert(containedInkWell != null),
assert(highlightShape != null), assert(highlightShape != null),
assert(enableFeedback != null), assert(enableFeedback != null),
assert(excludeFromSemantics != null), assert(excludeFromSemantics != null),
assert(autofocus != null),
assert(canRequestFocus != null),
super(key: key); super(key: key);
/// The widget below this widget in the tree. /// The widget below this widget in the tree.
...@@ -406,21 +400,6 @@ class InkResponse extends StatefulWidget { ...@@ -406,21 +400,6 @@ class InkResponse extends StatefulWidget {
/// duplication of information. /// duplication of information.
final bool excludeFromSemantics; final bool excludeFromSemantics;
/// Handler called when the focus changes.
///
/// Called with true if this widget's node gains focus, and false if it loses
/// focus.
final ValueChanged<bool> onFocusChange;
/// {@macro flutter.widgets.Focus.autofocus}
final bool autofocus;
/// {@macro flutter.widgets.Focus.focusNode}
final FocusNode focusNode;
/// {@template flutter.widgets.Focus.canRequestFocus}
final bool canRequestFocus;
/// The rectangle to use for the highlight effect and for clipping /// The rectangle to use for the highlight effect and for clipping
/// the splash effects if [containedInkWell] is true. /// the splash effects if [containedInkWell] is true.
/// ///
...@@ -483,6 +462,7 @@ enum _HighlightType { ...@@ -483,6 +462,7 @@ enum _HighlightType {
class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKeepAliveClientMixin<T> { class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKeepAliveClientMixin<T> {
Set<InteractiveInkFeature> _splashes; Set<InteractiveInkFeature> _splashes;
InteractiveInkFeature _currentSplash; InteractiveInkFeature _currentSplash;
FocusNode _focusNode;
bool _hovering = false; bool _hovering = false;
final Map<_HighlightType, InkHighlight> _highlights = <_HighlightType, InkHighlight>{}; final Map<_HighlightType, InkHighlight> _highlights = <_HighlightType, InkHighlight>{};
...@@ -494,18 +474,27 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe ...@@ -494,18 +474,27 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe
WidgetsBinding.instance.focusManager.addHighlightModeListener(_handleFocusHighlightModeChange); WidgetsBinding.instance.focusManager.addHighlightModeListener(_handleFocusHighlightModeChange);
} }
@override
void didChangeDependencies() {
super.didChangeDependencies();
_focusNode?.removeListener(_handleFocusUpdate);
_focusNode = Focus.of(context, nullOk: true);
_focusNode?.addListener(_handleFocusUpdate);
}
@override @override
void didUpdateWidget(InkResponse oldWidget) { void didUpdateWidget(InkResponse oldWidget) {
super.didUpdateWidget(oldWidget); super.didUpdateWidget(oldWidget);
if (_isWidgetEnabled(widget) != _isWidgetEnabled(oldWidget)) { if (_isWidgetEnabled(widget) != _isWidgetEnabled(oldWidget)) {
_handleHoverChange(_hovering); _handleHoverChange(_hovering);
_updateFocusHighlights(); _handleFocusUpdate();
} }
} }
@override @override
void dispose() { void dispose() {
WidgetsBinding.instance.focusManager.removeHighlightModeListener(_handleFocusHighlightModeChange); WidgetsBinding.instance.focusManager.removeHighlightModeListener(_handleFocusHighlightModeChange);
_focusNode?.removeListener(_handleFocusUpdate);
super.dispose(); super.dispose();
} }
...@@ -571,7 +560,7 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe ...@@ -571,7 +560,7 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe
} }
assert(value == (_highlights[type] != null && _highlights[type].active)); assert(value == (_highlights[type] != null && _highlights[type].active));
switch (type) { switch(type) {
case _HighlightType.pressed: case _HighlightType.pressed:
if (widget.onHighlightChanged != null) if (widget.onHighlightChanged != null)
widget.onHighlightChanged(value); widget.onHighlightChanged(value);
...@@ -585,10 +574,10 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe ...@@ -585,10 +574,10 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe
} }
} }
InteractiveInkFeature _createInkFeature(Offset globalPosition) { InteractiveInkFeature _createInkFeature(TapDownDetails details) {
final MaterialInkController inkController = Material.of(context); final MaterialInkController inkController = Material.of(context);
final RenderBox referenceBox = context.findRenderObject(); final RenderBox referenceBox = context.findRenderObject();
final Offset position = referenceBox.globalToLocal(globalPosition); final Offset position = referenceBox.globalToLocal(details.globalPosition);
final Color color = widget.splashColor ?? Theme.of(context).splashColor; final Color color = widget.splashColor ?? Theme.of(context).splashColor;
final RectCallback rectCallback = widget.containedInkWell ? widget.getRectCallback(referenceBox) : null; final RectCallback rectCallback = widget.containedInkWell ? widget.getRectCallback(referenceBox) : null;
final BorderRadius borderRadius = widget.borderRadius; final BorderRadius borderRadius = widget.borderRadius;
...@@ -627,54 +616,31 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe ...@@ -627,54 +616,31 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe
return; return;
} }
setState(() { setState(() {
_updateFocusHighlights(); _handleFocusUpdate();
}); });
} }
void _updateFocusHighlights() { void _handleFocusUpdate() {
bool showFocus; bool showFocus;
switch (WidgetsBinding.instance.focusManager.highlightMode) { switch (WidgetsBinding.instance.focusManager.highlightMode) {
case FocusHighlightMode.touch: case FocusHighlightMode.touch:
showFocus = false; showFocus = false;
break; break;
case FocusHighlightMode.traditional: case FocusHighlightMode.traditional:
showFocus = enabled && _hasFocus; showFocus = enabled && (Focus.of(context, nullOk: true)?.hasPrimaryFocus ?? false);
break; break;
} }
updateHighlight(_HighlightType.focus, value: showFocus); updateHighlight(_HighlightType.focus, value: showFocus);
} }
bool _hasFocus = false;
void _handleFocusUpdate(bool hasFocus) {
_hasFocus = hasFocus;
_updateFocusHighlights();
if (widget.onFocusChange != null) {
widget.onFocusChange(hasFocus);
}
}
void _handleTapDown(TapDownDetails details) { void _handleTapDown(TapDownDetails details) {
_startSplash(details: details); final InteractiveInkFeature splash = _createInkFeature(details);
if (widget.onTapDown != null) {
widget.onTapDown(details);
}
}
void _startSplash({TapDownDetails details, BuildContext context}) {
assert(details != null || context != null);
Offset globalPosition;
if (context != null) {
final RenderBox referenceBox = context.findRenderObject();
assert(referenceBox.hasSize, 'InkResponse must be done with layout before starting a splash.');
globalPosition = referenceBox.localToGlobal(referenceBox.paintBounds.center);
} else {
globalPosition = details.globalPosition;
}
final InteractiveInkFeature splash = _createInkFeature(globalPosition);
_splashes ??= HashSet<InteractiveInkFeature>(); _splashes ??= HashSet<InteractiveInkFeature>();
_splashes.add(splash); _splashes.add(splash);
_currentSplash = splash; _currentSplash = splash;
if (widget.onTapDown != null) {
widget.onTapDown(details);
}
updateKeepAlive(); updateKeepAlive();
updateHighlight(_HighlightType.pressed, value: true); updateHighlight(_HighlightType.pressed, value: true);
} }
...@@ -756,37 +722,18 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe ...@@ -756,37 +722,18 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe
_highlights[type]?.color = getHighlightColorForType(type); _highlights[type]?.color = getHighlightColorForType(type);
} }
_currentSplash?.color = widget.splashColor ?? Theme.of(context).splashColor; _currentSplash?.color = widget.splashColor ?? Theme.of(context).splashColor;
return Actions( return MouseRegion(
actions: <LocalKey, ActionFactory>{ onEnter: enabled ? _handleMouseEnter : null,
ActivateAction.key: () { onExit: enabled ? _handleMouseExit : null,
return CallbackAction( child: GestureDetector(
ActivateAction.key, onTapDown: enabled ? _handleTapDown : null,
onInvoke: (FocusNode node, Intent intent) { onTap: enabled ? () => _handleTap(context) : null,
_startSplash(context: node.context); onTapCancel: enabled ? _handleTapCancel : null,
_handleTap(node.context); onDoubleTap: widget.onDoubleTap != null ? _handleDoubleTap : null,
}, onLongPress: widget.onLongPress != null ? () => _handleLongPress(context) : null,
); behavior: HitTestBehavior.opaque,
}, child: widget.child,
}, excludeFromSemantics: widget.excludeFromSemantics,
child: Focus(
focusNode: widget.focusNode,
canRequestFocus: widget.canRequestFocus,
onFocusChange: _handleFocusUpdate,
autofocus: widget.autofocus,
child: MouseRegion(
onEnter: enabled ? _handleMouseEnter : null,
onExit: enabled ? _handleMouseExit : null,
child: GestureDetector(
onTapDown: enabled ? _handleTapDown : null,
onTap: enabled ? () => _handleTap(context) : null,
onTapCancel: enabled ? _handleTapCancel : null,
onDoubleTap: widget.onDoubleTap != null ? _handleDoubleTap : null,
onLongPress: widget.onLongPress != null ? () => _handleLongPress(context) : null,
behavior: HitTestBehavior.opaque,
excludeFromSemantics: widget.excludeFromSemantics,
child: widget.child,
),
),
), ),
); );
} }
...@@ -907,10 +854,6 @@ class InkWell extends InkResponse { ...@@ -907,10 +854,6 @@ class InkWell extends InkResponse {
ShapeBorder customBorder, ShapeBorder customBorder,
bool enableFeedback = true, bool enableFeedback = true,
bool excludeFromSemantics = false, bool excludeFromSemantics = false,
FocusNode focusNode,
bool canRequestFocus = true,
ValueChanged<bool> onFocusChange,
bool autofocus = false,
}) : super( }) : super(
key: key, key: key,
child: child, child: child,
...@@ -933,9 +876,5 @@ class InkWell extends InkResponse { ...@@ -933,9 +876,5 @@ class InkWell extends InkResponse {
customBorder: customBorder, customBorder: customBorder,
enableFeedback: enableFeedback ?? true, enableFeedback: enableFeedback ?? true,
excludeFromSemantics: excludeFromSemantics ?? false, excludeFromSemantics: excludeFromSemantics ?? false,
focusNode: focusNode,
canRequestFocus: canRequestFocus ?? true,
onFocusChange: onFocusChange,
autofocus: autofocus ?? false,
); );
} }
...@@ -344,20 +344,6 @@ class Actions extends InheritedWidget { ...@@ -344,20 +344,6 @@ class Actions extends InheritedWidget {
return oldWidget.dispatcher != dispatcher || oldWidget.actions != actions; return oldWidget.dispatcher != dispatcher || oldWidget.actions != actions;
} }
@override
bool operator ==(dynamic other) {
if (other.runtimeType != runtimeType) {
return false;
}
if (identical(this, other)) {
return true;
}
return !updateShouldNotify(other);
}
@override
int get hashCode => hashValues(dispatcher, actions);
@override @override
void debugFillProperties(DiagnosticPropertiesBuilder properties) { void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties); super.debugFillProperties(properties);
...@@ -382,16 +368,3 @@ class DoNothingAction extends Action { ...@@ -382,16 +368,3 @@ class DoNothingAction extends Action {
@override @override
void invoke(FocusNode node, Intent intent) { } void invoke(FocusNode node, Intent intent) { }
} }
/// An action that invokes the currently focused control.
///
/// This is an abstract class that serves as a base class for actions that
/// activate a control. It is bound to [LogicalKeyboardKey.enter] in the default
/// keyboard map in [WidgetsApp].
abstract class ActivateAction extends Action {
/// Creates a [ActivateAction] with a fixed [key];
const ActivateAction() : super(key);
/// The [LocalKey] that uniquely identifies this action.
static const LocalKey key = ValueKey<Type>(ActivateAction);
}
...@@ -7,7 +7,6 @@ import 'dart:collection' show HashMap; ...@@ -7,7 +7,6 @@ import 'dart:collection' show HashMap;
import 'package:flutter/foundation.dart'; import 'package:flutter/foundation.dart';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
import 'package:flutter/services.dart';
import 'actions.dart'; import 'actions.dart';
import 'banner.dart'; import 'banner.dart';
...@@ -21,7 +20,6 @@ import 'navigator.dart'; ...@@ -21,7 +20,6 @@ import 'navigator.dart';
import 'pages.dart'; import 'pages.dart';
import 'performance_overlay.dart'; import 'performance_overlay.dart';
import 'semantics_debugger.dart'; import 'semantics_debugger.dart';
import 'shortcuts.dart';
import 'text.dart'; import 'text.dart';
import 'title.dart'; import 'title.dart';
import 'widget_inspector.dart'; import 'widget_inspector.dart';
...@@ -1197,33 +1195,18 @@ class _WidgetsAppState extends State<WidgetsApp> implements WidgetsBindingObserv ...@@ -1197,33 +1195,18 @@ class _WidgetsAppState extends State<WidgetsApp> implements WidgetsBindingObserv
assert(_debugCheckLocalizations(appLocale)); assert(_debugCheckLocalizations(appLocale));
return Shortcuts( return Actions(
shortcuts: <LogicalKeySet, Intent>{ actions: <LocalKey, ActionFactory>{
LogicalKeySet(LogicalKeyboardKey.tab): const Intent(NextFocusAction.key), DoNothingAction.key: () => const DoNothingAction(),
LogicalKeySet(LogicalKeyboardKey.shift, LogicalKeyboardKey.tab): const Intent(PreviousFocusAction.key),
LogicalKeySet(LogicalKeyboardKey.arrowLeft): const DirectionalFocusIntent(TraversalDirection.left),
LogicalKeySet(LogicalKeyboardKey.arrowRight): const DirectionalFocusIntent(TraversalDirection.right),
LogicalKeySet(LogicalKeyboardKey.arrowDown): const DirectionalFocusIntent(TraversalDirection.down),
LogicalKeySet(LogicalKeyboardKey.arrowUp): const DirectionalFocusIntent(TraversalDirection.up),
LogicalKeySet(LogicalKeyboardKey.enter): const Intent(ActivateAction.key),
}, },
child: Actions( child: DefaultFocusTraversal(
actions: <LocalKey, ActionFactory>{ policy: ReadingOrderTraversalPolicy(),
DoNothingAction.key: () => const DoNothingAction(), child: MediaQuery(
RequestFocusAction.key: () => RequestFocusAction(), data: MediaQueryData.fromWindow(WidgetsBinding.instance.window),
NextFocusAction.key: () => NextFocusAction(), child: Localizations(
PreviousFocusAction.key: () => PreviousFocusAction(), locale: appLocale,
DirectionalFocusAction.key: () => DirectionalFocusAction(), delegates: _localizationsDelegates.toList(),
}, child: title,
child: DefaultFocusTraversal(
policy: ReadingOrderTraversalPolicy(),
child: MediaQuery(
data: MediaQueryData.fromWindow(WidgetsBinding.instance.window),
child: Localizations(
locale: appLocale,
delegates: _localizationsDelegates.toList(),
child: title,
),
), ),
), ),
), ),
......
...@@ -146,11 +146,10 @@ class Focus extends StatefulWidget { ...@@ -146,11 +146,10 @@ class Focus extends StatefulWidget {
this.onFocusChange, this.onFocusChange,
this.onKey, this.onKey,
this.debugLabel, this.debugLabel,
this.canRequestFocus = true, this.canRequestFocus,
this.skipTraversal, this.skipTraversal,
}) : assert(child != null), }) : assert(child != null),
assert(autofocus != null), assert(autofocus != null),
assert(canRequestFocus != null),
super(key: key); super(key: key);
/// A debug label for this widget. /// A debug label for this widget.
...@@ -187,7 +186,7 @@ class Focus extends StatefulWidget { ...@@ -187,7 +186,7 @@ class Focus extends StatefulWidget {
/// Handler called when the focus changes. /// Handler called when the focus changes.
/// ///
/// Called with true if this widget's node gains focus, and false if it loses /// Called with true if this node gains focus, and false if it loses
/// focus. /// focus.
final ValueChanged<bool> onFocusChange; final ValueChanged<bool> onFocusChange;
...@@ -231,7 +230,6 @@ class Focus extends StatefulWidget { ...@@ -231,7 +230,6 @@ class Focus extends StatefulWidget {
/// still be focused explicitly. /// still be focused explicitly.
final bool skipTraversal; final bool skipTraversal;
/// {@template flutter.widgets.Focus.canRequestFocus}
/// If true, this widget may request the primary focus. /// If true, this widget may request the primary focus.
/// ///
/// Defaults to true. Set to false if you want the [FocusNode] this widget /// Defaults to true. Set to false if you want the [FocusNode] this widget
...@@ -251,7 +249,6 @@ class Focus extends StatefulWidget { ...@@ -251,7 +249,6 @@ class Focus extends StatefulWidget {
/// its descendants. /// its descendants.
/// - [FocusTraversalPolicy], a class that can be extended to describe a /// - [FocusTraversalPolicy], a class that can be extended to describe a
/// traversal policy. /// traversal policy.
/// {@endtemplate}
final bool canRequestFocus; final bool canRequestFocus;
/// Returns the [focusNode] of the [Focus] that most tightly encloses the /// Returns the [focusNode] of the [Focus] that most tightly encloses the
......
...@@ -2,12 +2,9 @@ ...@@ -2,12 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:ui';
import 'package:flutter/foundation.dart'; import 'package:flutter/foundation.dart';
import 'package:flutter/painting.dart'; import 'package:flutter/painting.dart';
import 'actions.dart';
import 'basic.dart'; import 'basic.dart';
import 'binding.dart'; import 'binding.dart';
import 'focus_manager.dart'; import 'focus_manager.dart';
...@@ -793,138 +790,3 @@ class DefaultFocusTraversal extends InheritedWidget { ...@@ -793,138 +790,3 @@ class DefaultFocusTraversal extends InheritedWidget {
@override @override
bool updateShouldNotify(DefaultFocusTraversal oldWidget) => policy != oldWidget.policy; bool updateShouldNotify(DefaultFocusTraversal oldWidget) => policy != oldWidget.policy;
} }
// A base class for all of the default actions that request focus for a node.
class _RequestFocusActionBase extends Action {
_RequestFocusActionBase(LocalKey name) : super(name);
FocusNode _previousFocus;
@override
void invoke(FocusNode node, Intent tag) {
_previousFocus = WidgetsBinding.instance.focusManager.primaryFocus;
node.requestFocus();
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties.add(DiagnosticsProperty<FocusNode>('previous', _previousFocus));
}
}
/// An [Action] that requests the focus on the node it is invoked on.
///
/// This action can be used to request focus for a particular node, by calling
/// [Action.invoke] like so:
///
/// ```dart
/// Actions.invoke(context, const Intent(RequestFocusAction.key), focusNode: _focusNode);
/// ```
///
/// Where the `_focusNode` is the node for which the focus will be requested.
///
/// The difference between requesting focus in this way versus calling
/// [_focusNode.requestFocus] directly is that it will use the [Action]
/// registered in the nearest [Actions] widget associated with [key] to make the
/// request, rather than just requesting focus directly. This allows the action
/// to have additional side effects, like logging, or undo and redo
/// functionality.
///
/// However, this [RequestFocusAction] is the default action associated with the
/// [key] in the [WidgetsApp], and it simply requests focus and has no side
/// effects.
class RequestFocusAction extends _RequestFocusActionBase {
/// Creates a [RequestFocusAction] with a fixed [key].
RequestFocusAction() : super(key);
/// The [LocalKey] that uniquely identifies this action to an [Intent].
static const LocalKey key = ValueKey<Type>(RequestFocusAction);
@override
void invoke(FocusNode node, Intent tag) {
super.invoke(node, tag);
node.requestFocus();
}
}
/// An [Action] that moves the focus to the next focusable node in the focus
/// order.
///
/// This action is the default action registered for the [key], and by default
/// is bound to the [LogicalKeyboardKey.tab] key in the [WidgetsApp].
class NextFocusAction extends _RequestFocusActionBase {
/// Creates a [NextFocusAction] with a fixed [key];
NextFocusAction() : super(key);
/// The [LocalKey] that uniquely identifies this action to an [Intent].
static const LocalKey key = ValueKey<Type>(NextFocusAction);
@override
void invoke(FocusNode node, Intent tag) {
super.invoke(node, tag);
node.nextFocus();
}
}
/// An [Action] that moves the focus to the previous focusable node in the focus
/// order.
///
/// This action is the default action registered for the [key], and by default
/// is bound to a combination of the [LogicalKeyboardKey.tab] key and the
/// [LogicalKeyboardKey.shift] key in the [WidgetsApp].
class PreviousFocusAction extends _RequestFocusActionBase {
/// Creates a [PreviousFocusAction] with a fixed [key];
PreviousFocusAction() : super(key);
/// The [LocalKey] that uniquely identifies this action to an [Intent].
static const LocalKey key = ValueKey<Type>(PreviousFocusAction);
@override
void invoke(FocusNode node, Intent tag) {
super.invoke(node, tag);
node.previousFocus();
}
}
/// An [Intent] that represents moving to the next focusable node in the given
/// [direction].
///
/// This is the [Intent] bound by default to the [LogicalKeyboardKey.arrowUp],
/// [LogicalKeyboardKey.arrowDown], [LogicalKeyboardKey.arrowLeft], and
/// [LogicalKeyboardKey.arrowRight] keys in the [WidgetsApp], with the
/// appropriate associated directions.
class DirectionalFocusIntent extends Intent {
/// Creates a [DirectionalFocusIntent] with a fixed [key], and the given
/// [direction].
const DirectionalFocusIntent(this.direction) : super(DirectionalFocusAction.key);
/// The direction in which to look for the next focusable node when the
/// associated [DirectionalFocusAction] is invoked.
final TraversalDirection direction;
}
/// An [Action] that moves the focus to the focusable node in the given
/// [direction] configured by the associated [DirectionalFocusIntent].
///
/// This is the [Action] associated with the [key] and bound by default to the
/// [LogicalKeyboardKey.arrowUp], [LogicalKeyboardKey.arrowDown],
/// [LogicalKeyboardKey.arrowLeft], and [LogicalKeyboardKey.arrowRight] keys in
/// the [WidgetsApp], with the appropriate associated directions.
class DirectionalFocusAction extends _RequestFocusActionBase {
/// Creates a [DirectionalFocusAction] with a fixed [key];
DirectionalFocusAction() : super(key);
/// The [LocalKey] that uniquely identifies this action to [DirectionalFocusIntent].
static const LocalKey key = ValueKey<Type>(DirectionalFocusAction);
/// The direction in which to look for the next focusable node when invoked.
TraversalDirection direction;
@override
void invoke(FocusNode node, DirectionalFocusIntent tag) {
super.invoke(node, tag);
final DirectionalFocusIntent args = tag;
node.focusInDirection(args.direction);
}
}
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
import 'package:flutter/services.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
import '../rendering/mock_canvas.dart'; import '../rendering/mock_canvas.dart';
...@@ -128,21 +127,17 @@ void main() { ...@@ -128,21 +127,17 @@ void main() {
..translate(x: 0.0, y: 0.0) ..translate(x: 0.0, y: 0.0)
..translate(x: tapDownOffset.dx, y: tapDownOffset.dy) ..translate(x: tapDownOffset.dx, y: tapDownOffset.dy)
..something((Symbol method, List<dynamic> arguments) { ..something((Symbol method, List<dynamic> arguments) {
if (method != #drawCircle) { if (method != #drawCircle)
return false; return false;
}
final Offset center = arguments[0]; final Offset center = arguments[0];
final double radius = arguments[1]; final double radius = arguments[1];
final Paint paint = arguments[2]; final Paint paint = arguments[2];
if (offsetsAreClose(center, expectedCenter) && if (offsetsAreClose(center, expectedCenter) && radiiAreClose(radius, expectedRadius) && paint.color.alpha == expectedAlpha)
radiiAreClose(radius, expectedRadius) &&
paint.color.alpha == expectedAlpha) {
return true; return true;
}
throw ''' throw '''
Expected: center == $expectedCenter, radius == $expectedRadius, alpha == $expectedAlpha Expected: center == $expectedCenter, radius == $expectedRadius, alpha == $expectedAlpha
Found: center == $center radius == $radius alpha == ${paint.color.alpha}'''; Found: center == $center radius == $radius alpha == ${paint.color.alpha}''';
}, }
); );
} }
...@@ -256,102 +251,6 @@ void main() { ...@@ -256,102 +251,6 @@ void main() {
await gesture.up(); await gesture.up();
}, skip: isBrowser); }, skip: isBrowser);
testWidgets('The InkWell widget renders an ActivateAction-induced ink ripple', (WidgetTester tester) async {
const Color highlightColor = Color(0xAAFF0000);
const Color splashColor = Color(0xB40000FF);
final BorderRadius borderRadius = BorderRadius.circular(6.0);
final FocusNode focusNode = FocusNode(debugLabel: 'Test Node');
await tester.pumpWidget(
Shortcuts(
shortcuts: <LogicalKeySet, Intent>{
LogicalKeySet(LogicalKeyboardKey.enter): const Intent(ActivateAction.key),
},
child: Directionality(
textDirection: TextDirection.ltr,
child: Material(
child: Center(
child: Container(
width: 100.0,
height: 100.0,
child: InkWell(
borderRadius: borderRadius,
highlightColor: highlightColor,
splashColor: splashColor,
focusNode: focusNode,
onTap: () { },
radius: 100.0,
splashFactory: InkRipple.splashFactory,
),
),
),
),
),
),
);
final Offset topLeft = tester.getTopLeft(find.byType(InkWell));
final Offset inkWellCenter = tester.getCenter(find.byType(InkWell)) - topLeft;
// Now activate it with a keypress.
focusNode.requestFocus();
await tester.pumpAndSettle();
await tester.sendKeyEvent(LogicalKeyboardKey.enter);
await tester.pump();
final RenderBox box = Material.of(tester.element(find.byType(InkWell))) as dynamic;
bool offsetsAreClose(Offset a, Offset b) => (a - b).distance < 1.0;
bool radiiAreClose(double a, double b) => (a - b).abs() < 1.0;
PaintPattern ripplePattern(double expectedRadius, int expectedAlpha) {
return paints
..translate(x: 0.0, y: 0.0)
..translate(x: topLeft.dx, y: topLeft.dy)
..something((Symbol method, List<dynamic> arguments) {
if (method != #drawCircle) {
return false;
}
final Offset center = arguments[0];
final double radius = arguments[1];
final Paint paint = arguments[2];
if (offsetsAreClose(center, inkWellCenter) &&
radiiAreClose(radius, expectedRadius) &&
paint.color.alpha == expectedAlpha) {
return true;
}
throw '''
Expected: center == $inkWellCenter, radius == $expectedRadius, alpha == $expectedAlpha
Found: center == $center radius == $radius alpha == ${paint.color.alpha}''';
},
);
}
// ripplePattern always add a translation of topLeft.
expect(box, ripplePattern(30.0, 0));
// The ripple fades in for 75ms. During that time its alpha is eased from
// 0 to the splashColor's alpha value.
await tester.pump(const Duration(milliseconds: 50));
expect(box, ripplePattern(56.0, 120));
// At 75ms the ripple has faded in: it's alpha matches the splashColor's
// alpha.
await tester.pump(const Duration(milliseconds: 25));
expect(box, ripplePattern(73.0, 180));
// At this point the splash radius has expanded to its limit: 5 past the
// ink well's radius parameter. The fade-out is about to start.
// The fade-out begins at 225ms = 50ms + 25ms + 150ms.
await tester.pump(const Duration(milliseconds: 150));
expect(box, ripplePattern(105.0, 180));
// After another 150ms the fade-out is complete.
await tester.pump(const Duration(milliseconds: 150));
expect(box, ripplePattern(105.0, 0));
});
testWidgets('Cancel an InkRipple that was disposed when its animation ended', (WidgetTester tester) async { testWidgets('Cancel an InkRipple that was disposed when its animation ended', (WidgetTester tester) async {
// Regression test for https://github.com/flutter/flutter/issues/14391 // Regression test for https://github.com/flutter/flutter/issues/14391
await tester.pumpWidget( await tester.pumpWidget(
...@@ -432,4 +331,5 @@ void main() { ...@@ -432,4 +331,5 @@ void main() {
throw 'Expected: paint.color.alpha == 0, found: ${paint.color.alpha}'; throw 'Expected: paint.color.alpha == 0, found: ${paint.color.alpha}';
})); }));
}); });
} }
...@@ -103,9 +103,9 @@ void main() { ...@@ -103,9 +103,9 @@ void main() {
splashColor: const Color(0xffff0000), splashColor: const Color(0xffff0000),
focusColor: const Color(0xff0000ff), focusColor: const Color(0xff0000ff),
highlightColor: const Color(0xf00fffff), highlightColor: const Color(0xf00fffff),
onTap: () { }, onTap: () {},
onLongPress: () { }, onLongPress: () {},
onHover: (bool hover) { }, onHover: (bool hover) {},
), ),
), ),
), ),
...@@ -123,29 +123,29 @@ void main() { ...@@ -123,29 +123,29 @@ void main() {
testWidgets('ink response changes color on focus', (WidgetTester tester) async { testWidgets('ink response changes color on focus', (WidgetTester tester) async {
WidgetsBinding.instance.focusManager.highlightStrategy = FocusHighlightStrategy.alwaysTraditional; WidgetsBinding.instance.focusManager.highlightStrategy = FocusHighlightStrategy.alwaysTraditional;
final FocusNode focusNode = FocusNode(debugLabel: 'Ink Focus'); final FocusNode focusNode = FocusNode(debugLabel: 'Ink Focus');
await tester.pumpWidget( await tester.pumpWidget(Material(
Material( child: Directionality(
child: Directionality( textDirection: TextDirection.ltr,
textDirection: TextDirection.ltr, child: Center(
child: Center( child: Focus(
focusNode: focusNode,
child: Container( child: Container(
width: 100, width: 100,
height: 100, height: 100,
child: InkWell( child: InkWell(
focusNode: focusNode,
hoverColor: const Color(0xff00ff00), hoverColor: const Color(0xff00ff00),
splashColor: const Color(0xffff0000), splashColor: const Color(0xffff0000),
focusColor: const Color(0xff0000ff), focusColor: const Color(0xff0000ff),
highlightColor: const Color(0xf00fffff), highlightColor: const Color(0xf00fffff),
onTap: () { }, onTap: () {},
onLongPress: () { }, onLongPress: () {},
onHover: (bool hover) { }, onHover: (bool hover) {},
), ),
), ),
), ),
), ),
), ),
); ));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
final RenderObject inkFeatures = tester.allRenderObjects.firstWhere((RenderObject object) => object.runtimeType.toString() == '_RenderInkFeatures'); final RenderObject inkFeatures = tester.allRenderObjects.firstWhere((RenderObject object) => object.runtimeType.toString() == '_RenderInkFeatures');
expect(inkFeatures, paintsExactlyCountTimes(#rect, 0)); expect(inkFeatures, paintsExactlyCountTimes(#rect, 0));
...@@ -172,9 +172,9 @@ void main() { ...@@ -172,9 +172,9 @@ void main() {
splashColor: const Color(0xffff0000), splashColor: const Color(0xffff0000),
focusColor: const Color(0xff0000ff), focusColor: const Color(0xff0000ff),
highlightColor: const Color(0xf00fffff), highlightColor: const Color(0xf00fffff),
onTap: () { }, onTap: () {},
onLongPress: () { }, onLongPress: () {},
onHover: (bool hover) { }, onHover: (bool hover) {},
), ),
), ),
), ),
...@@ -206,8 +206,8 @@ void main() { ...@@ -206,8 +206,8 @@ void main() {
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
child: Center( child: Center(
child: InkWell( child: InkWell(
onTap: () { }, onTap: () {},
onLongPress: () { }, onLongPress: () {},
), ),
), ),
), ),
...@@ -234,8 +234,8 @@ void main() { ...@@ -234,8 +234,8 @@ void main() {
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
child: Center( child: Center(
child: InkWell( child: InkWell(
onTap: () { }, onTap: () {},
onLongPress: () { }, onLongPress: () {},
enableFeedback: false, enableFeedback: false,
), ),
), ),
...@@ -301,7 +301,7 @@ void main() { ...@@ -301,7 +301,7 @@ void main() {
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
child: Material( child: Material(
child: InkWell( child: InkWell(
onTap: () { }, onTap: () {},
child: const Text('Button'), child: const Text('Button'),
), ),
), ),
...@@ -312,7 +312,7 @@ void main() { ...@@ -312,7 +312,7 @@ void main() {
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
child: Material( child: Material(
child: InkWell( child: InkWell(
onTap: () { }, onTap: () {},
child: const Text('Button'), child: const Text('Button'),
excludeFromSemantics: true, excludeFromSemantics: true,
), ),
......
...@@ -5,77 +5,12 @@ ...@@ -5,77 +5,12 @@
import 'package:flutter/gestures.dart'; import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
import 'package:flutter/src/services/keyboard_key.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
import '../rendering/mock_canvas.dart'; import '../rendering/mock_canvas.dart';
import '../widgets/semantics_tester.dart'; import '../widgets/semantics_tester.dart';
void main() { void main() {
testWidgets('RawMaterialButton responds when tapped', (WidgetTester tester) async {
bool pressed = false;
const Color splashColor = Color(0xff00ff00);
await tester.pumpWidget(
Directionality(
textDirection: TextDirection.ltr,
child: Center(
child: RawMaterialButton(
splashColor: splashColor,
onPressed: () { pressed = true; },
child: const Text('BUTTON'),
),
),
),
);
await tester.tap(find.text('BUTTON'));
await tester.pump(const Duration(milliseconds: 10));
final RenderBox splash = Material.of(tester.element(find.byType(InkWell))) as dynamic;
expect(splash, paints..circle(color: splashColor));
await tester.pumpAndSettle();
expect(pressed, isTrue);
});
testWidgets('RawMaterialButton responds to shortcut when activated', (WidgetTester tester) async {
bool pressed = false;
final FocusNode focusNode = FocusNode(debugLabel: 'Test Button');
const Color splashColor = Color(0xff00ff00);
await tester.pumpWidget(
Shortcuts(
shortcuts: <LogicalKeySet, Intent>{
LogicalKeySet(LogicalKeyboardKey.enter): const Intent(ActivateAction.key),
},
child: Directionality(
textDirection: TextDirection.ltr,
child: Center(
child: RawMaterialButton(
splashColor: splashColor,
focusNode: focusNode,
onPressed: () { pressed = true; },
child: const Text('BUTTON'),
),
),
),
),
);
focusNode.requestFocus();
await tester.pump();
await tester.sendKeyEvent(LogicalKeyboardKey.enter);
await tester.pump(const Duration(milliseconds: 10));
final RenderBox splash = Material.of(tester.element(find.byType(InkWell))) as dynamic;
expect(splash, paints..circle(color: splashColor));
await tester.pumpAndSettle();
expect(pressed, isTrue);
});
testWidgets('materialTapTargetSize.padded expands hit test area', (WidgetTester tester) async { testWidgets('materialTapTargetSize.padded expands hit test area', (WidgetTester tester) async {
int pressed = 0; int pressed = 0;
......
...@@ -324,11 +324,11 @@ void main() { ...@@ -324,11 +324,11 @@ void main() {
).debugFillProperties(builder); ).debugFillProperties(builder);
final List<String> description = builder.properties final List<String> description = builder.properties
.where((DiagnosticsNode node) { .where((DiagnosticsNode node) {
return !node.isFiltered(DiagnosticLevel.info); return !node.isFiltered(DiagnosticLevel.info);
}) })
.map((DiagnosticsNode node) => node.toString()) .map((DiagnosticsNode node) => node.toString())
.toList(); .toList();
expect(description[0], equalsIgnoringHashCodes('dispatcher: ActionDispatcher#00000')); expect(description[0], equalsIgnoringHashCodes('dispatcher: ActionDispatcher#00000'));
expect(description[1], equals('actions: {[<\'bar\'>]: Closure: () => TestAction}')); expect(description[1], equals('actions: {[<\'bar\'>]: Closure: () => TestAction}'));
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'package:flutter/painting.dart';
import 'package:flutter/services.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart'; import 'package:flutter/widgets.dart';
...@@ -916,112 +914,5 @@ void main() { ...@@ -916,112 +914,5 @@ void main() {
expect(focusCenter.hasFocus, isFalse); expect(focusCenter.hasFocus, isFalse);
expect(focusTop.hasFocus, isTrue); expect(focusTop.hasFocus, isTrue);
}); });
testWidgets('Focus traversal actions are invoked when shortcuts are used.', (WidgetTester tester) async {
final GlobalKey upperLeftKey = GlobalKey(debugLabel: 'upperLeftKey');
final GlobalKey upperRightKey = GlobalKey(debugLabel: 'upperRightKey');
final GlobalKey lowerLeftKey = GlobalKey(debugLabel: 'lowerLeftKey');
final GlobalKey lowerRightKey = GlobalKey(debugLabel: 'lowerRightKey');
await tester.pumpWidget(
WidgetsApp(
color: const Color(0xFFFFFFFF),
onGenerateRoute: (RouteSettings settings) {
return TestRoute(
child: Directionality(
textDirection: TextDirection.ltr,
child: FocusScope(
debugLabel: 'scope',
child: Column(
children: <Widget>[
Row(
children: <Widget>[
Focus(
autofocus: true,
debugLabel: 'upperLeft',
child: Container(width: 100, height: 100, key: upperLeftKey),
),
Focus(
debugLabel: 'upperRight',
child: Container(width: 100, height: 100, key: upperRightKey),
),
],
),
Row(
children: <Widget>[
Focus(
debugLabel: 'lowerLeft',
child: Container(width: 100, height: 100, key: lowerLeftKey),
),
Focus(
debugLabel: 'lowerRight',
child: Container(width: 100, height: 100, key: lowerRightKey),
),
],
),
],
),
),
),
);
},
),
);
// Initial focus happens.
expect(Focus.of(upperLeftKey.currentContext).hasPrimaryFocus, isTrue);
await tester.sendKeyEvent(LogicalKeyboardKey.tab);
expect(Focus.of(upperRightKey.currentContext).hasPrimaryFocus, isTrue);
// Initial focus happens.
await tester.sendKeyEvent(LogicalKeyboardKey.tab);
expect(Focus.of(lowerLeftKey.currentContext).hasPrimaryFocus, isTrue);
// Initial focus happens.
await tester.sendKeyEvent(LogicalKeyboardKey.tab);
expect(Focus.of(lowerRightKey.currentContext).hasPrimaryFocus, isTrue);
// Initial focus happens.
await tester.sendKeyEvent(LogicalKeyboardKey.tab);
expect(Focus.of(upperLeftKey.currentContext).hasPrimaryFocus, isTrue);
await tester.sendKeyDownEvent(LogicalKeyboardKey.shift);
await tester.sendKeyEvent(LogicalKeyboardKey.tab);
await tester.sendKeyUpEvent(LogicalKeyboardKey.shift);
expect(Focus.of(lowerRightKey.currentContext).hasPrimaryFocus, isTrue);
// Initial focus happens.
await tester.sendKeyDownEvent(LogicalKeyboardKey.shift);
await tester.sendKeyEvent(LogicalKeyboardKey.tab);
await tester.sendKeyUpEvent(LogicalKeyboardKey.shift);
expect(Focus.of(lowerLeftKey.currentContext).hasPrimaryFocus, isTrue);
// Initial focus happens.
await tester.sendKeyDownEvent(LogicalKeyboardKey.shift);
await tester.sendKeyEvent(LogicalKeyboardKey.tab);
await tester.sendKeyUpEvent(LogicalKeyboardKey.shift);
expect(Focus.of(upperRightKey.currentContext).hasPrimaryFocus, isTrue);
// Initial focus happens.
await tester.sendKeyDownEvent(LogicalKeyboardKey.shift);
await tester.sendKeyEvent(LogicalKeyboardKey.tab);
await tester.sendKeyUpEvent(LogicalKeyboardKey.shift);
expect(Focus.of(upperLeftKey.currentContext).hasPrimaryFocus, isTrue);
// Traverse in a direction
await tester.sendKeyEvent(LogicalKeyboardKey.arrowRight);
expect(Focus.of(upperRightKey.currentContext).hasPrimaryFocus, isTrue);
// Initial focus happens.
await tester.sendKeyEvent(LogicalKeyboardKey.arrowDown);
expect(Focus.of(lowerRightKey.currentContext).hasPrimaryFocus, isTrue);
// Initial focus happens.
await tester.sendKeyEvent(LogicalKeyboardKey.arrowLeft);
expect(Focus.of(lowerLeftKey.currentContext).hasPrimaryFocus, isTrue);
// Initial focus happens.
await tester.sendKeyEvent(LogicalKeyboardKey.arrowUp);
expect(Focus.of(upperLeftKey.currentContext).hasPrimaryFocus, isTrue);
});
}); });
} }
class TestRoute extends PageRouteBuilder<void> {
TestRoute({Widget child})
: super(
pageBuilder: (BuildContext _, Animation<double> __, Animation<double> ___) {
return child;
},
);
}
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