| // Copyright 2014 The Flutter Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| import 'dart:collection'; |
| import 'dart:ui' as ui; |
| |
| import 'package:flutter/foundation.dart' show Brightness, clampDouble; |
| import 'package:flutter/rendering.dart'; |
| import 'package:flutter/widgets.dart'; |
| |
| import 'colors.dart'; |
| import 'text_selection_toolbar_button.dart'; |
| import 'theme.dart'; |
| |
| // Values extracted from https://developer.apple.com/design/resources/. |
| // The height of the toolbar, including the arrow. |
| const double _kToolbarHeight = 45.0; |
| // Vertical distance between the tip of the arrow and the line of text the arrow |
| // is pointing to. The value used here is eyeballed. |
| const double _kToolbarContentDistance = 8.0; |
| const Size _kToolbarArrowSize = Size(14.0, 7.0); |
| |
| // Minimal padding from tip of the selection toolbar arrow to horizontal edges of the |
| // screen. Eyeballed value. |
| const double _kArrowScreenPadding = 26.0; |
| |
| // Values extracted from https://developer.apple.com/design/resources/. |
| const Radius _kToolbarBorderRadius = Radius.circular(8); |
| |
| // Color was measured from a screenshot of iOS 16.0.2 |
| // TODO(LongCatIsLooong): https://github.com/flutter/flutter/issues/41507. |
| const CupertinoDynamicColor _kToolbarBackgroundColor = CupertinoDynamicColor.withBrightness( |
| color: Color(0xFFF6F6F6), |
| darkColor: Color(0xFF222222), |
| ); |
| |
| const double _kToolbarChevronSize = 10; |
| const double _kToolbarChevronThickness = 2; |
| |
| // Color was measured from a screenshot of iOS 16.0.2. |
| const CupertinoDynamicColor _kToolbarDividerColor = CupertinoDynamicColor.withBrightness( |
| color: Color(0xFFD6D6D6), |
| darkColor: Color(0xFF424242), |
| ); |
| |
| const CupertinoDynamicColor _kToolbarTextColor = CupertinoDynamicColor.withBrightness( |
| color: CupertinoColors.black, |
| darkColor: CupertinoColors.white, |
| ); |
| |
| const Duration _kToolbarTransitionDuration = Duration(milliseconds: 125); |
| |
| /// The type for a Function that builds a toolbar's container with the given |
| /// child. |
| /// |
| /// The anchor is provided in global coordinates. |
| /// |
| /// See also: |
| /// |
| /// * [CupertinoTextSelectionToolbar.toolbarBuilder], which is of this type. |
| /// * [TextSelectionToolbar.toolbarBuilder], which is similar, but for an |
| /// Material-style toolbar. |
| typedef CupertinoToolbarBuilder = Widget Function( |
| BuildContext context, |
| Offset anchor, |
| bool isAbove, |
| Widget child, |
| ); |
| |
| /// An iOS-style text selection toolbar. |
| /// |
| /// Typically displays buttons for text manipulation, e.g. copying and pasting |
| /// text. |
| /// |
| /// Tries to position itself above [anchorAbove], but if it doesn't fit, then |
| /// it positions itself below [anchorBelow]. |
| /// |
| /// If any children don't fit in the menu, an overflow menu will automatically |
| /// be created. |
| /// |
| /// See also: |
| /// |
| /// * [AdaptiveTextSelectionToolbar], which builds the toolbar for the current |
| /// platform. |
| /// * [TextSelectionToolbar], which is similar, but builds an Android-style |
| /// toolbar. |
| class CupertinoTextSelectionToolbar extends StatelessWidget { |
| /// Creates an instance of CupertinoTextSelectionToolbar. |
| const CupertinoTextSelectionToolbar({ |
| super.key, |
| required this.anchorAbove, |
| required this.anchorBelow, |
| required this.children, |
| this.toolbarBuilder = _defaultToolbarBuilder, |
| }) : assert(children.length > 0); |
| |
| /// {@macro flutter.material.TextSelectionToolbar.anchorAbove} |
| final Offset anchorAbove; |
| |
| /// {@macro flutter.material.TextSelectionToolbar.anchorBelow} |
| final Offset anchorBelow; |
| |
| /// {@macro flutter.material.TextSelectionToolbar.children} |
| /// |
| /// See also: |
| /// * [CupertinoTextSelectionToolbarButton], which builds a default |
| /// Cupertino-style text selection toolbar text button. |
| final List<Widget> children; |
| |
| /// {@macro flutter.material.TextSelectionToolbar.toolbarBuilder} |
| /// |
| /// The given anchor and isAbove can be used to position an arrow, as in the |
| /// default Cupertino toolbar. |
| final CupertinoToolbarBuilder toolbarBuilder; |
| |
| /// Minimal padding from all edges of the selection toolbar to all edges of the |
| /// viewport. |
| /// |
| /// See also: |
| /// |
| /// * [SpellCheckSuggestionsToolbar], which uses this same value for its |
| /// padding from the edges of the viewport. |
| /// * [TextSelectionToolbar], which uses this same value as well. |
| static const double kToolbarScreenPadding = 8.0; |
| |
| // Builds a toolbar just like the default iOS toolbar, with the right color |
| // background and a rounded cutout with an arrow. |
| static Widget _defaultToolbarBuilder(BuildContext context, Offset anchor, bool isAbove, Widget child) { |
| final Widget outputChild = _CupertinoTextSelectionToolbarShape( |
| anchor: anchor, |
| isAbove: isAbove, |
| child: ColoredBox( |
| color: _kToolbarBackgroundColor.resolveFrom(context), |
| child: child, |
| ), |
| ); |
| if (CupertinoTheme.brightnessOf(context) == Brightness.dark) { |
| return outputChild; |
| } |
| return DecoratedBox( |
| // These shadow values were eyeballed from a screenshot of iOS 16.3.1, as |
| // light mode didn't appear in the Apple design resources assets linked at |
| // the top of this file. |
| decoration: BoxDecoration( |
| borderRadius: const BorderRadius.all(_kToolbarBorderRadius), |
| boxShadow: <BoxShadow>[ |
| BoxShadow( |
| color: CupertinoColors.black.withOpacity(0.2), |
| blurRadius: 15.0, |
| offset: Offset( |
| 0.0, |
| isAbove ? 0.0 : _kToolbarArrowSize.height, |
| ), |
| ), |
| ], |
| ), |
| child: outputChild, |
| ); |
| } |
| |
| @override |
| Widget build(BuildContext context) { |
| assert(debugCheckHasMediaQuery(context)); |
| final EdgeInsets mediaQueryPadding = MediaQuery.paddingOf(context); |
| |
| final double paddingAbove = mediaQueryPadding.top + kToolbarScreenPadding; |
| final double toolbarHeightNeeded = paddingAbove |
| + _kToolbarContentDistance |
| + _kToolbarHeight; |
| final bool fitsAbove = anchorAbove.dy >= toolbarHeightNeeded; |
| |
| // The arrow, which points to the anchor, has some margin so it can't get |
| // too close to the horizontal edges of the screen. |
| final double leftMargin = _kArrowScreenPadding + mediaQueryPadding.left; |
| final double rightMargin = MediaQuery.sizeOf(context).width - mediaQueryPadding.right - _kArrowScreenPadding; |
| |
| final Offset anchorAboveAdjusted = Offset( |
| clampDouble(anchorAbove.dx, leftMargin, rightMargin), |
| anchorAbove.dy - _kToolbarContentDistance - paddingAbove, |
| ); |
| final Offset anchorBelowAdjusted = Offset( |
| clampDouble(anchorBelow.dx, leftMargin, rightMargin), |
| anchorBelow.dy + _kToolbarContentDistance - paddingAbove, |
| ); |
| |
| return Padding( |
| padding: EdgeInsets.fromLTRB( |
| kToolbarScreenPadding, |
| paddingAbove, |
| kToolbarScreenPadding, |
| kToolbarScreenPadding, |
| ), |
| child: CustomSingleChildLayout( |
| delegate: TextSelectionToolbarLayoutDelegate( |
| anchorAbove: anchorAboveAdjusted, |
| anchorBelow: anchorBelowAdjusted, |
| fitsAbove: fitsAbove, |
| ), |
| child: _CupertinoTextSelectionToolbarContent( |
| anchor: fitsAbove ? anchorAboveAdjusted : anchorBelowAdjusted, |
| isAbove: fitsAbove, |
| toolbarBuilder: toolbarBuilder, |
| children: children, |
| ), |
| ), |
| ); |
| } |
| } |
| |
| // Clips the child so that it has the shape of the default iOS text selection |
| // toolbar, with rounded corners and an arrow pointing at the anchor. |
| // |
| // The anchor should be in global coordinates. |
| class _CupertinoTextSelectionToolbarShape extends SingleChildRenderObjectWidget { |
| const _CupertinoTextSelectionToolbarShape({ |
| required Offset anchor, |
| required bool isAbove, |
| super.child, |
| }) : _anchor = anchor, |
| _isAbove = isAbove; |
| |
| final Offset _anchor; |
| |
| // Whether the arrow should point down and be attached to the bottom |
| // of the toolbar, or point up and be attached to the top of the toolbar. |
| final bool _isAbove; |
| |
| @override |
| _RenderCupertinoTextSelectionToolbarShape createRenderObject(BuildContext context) => _RenderCupertinoTextSelectionToolbarShape( |
| _anchor, |
| _isAbove, |
| null, |
| ); |
| |
| @override |
| void updateRenderObject(BuildContext context, _RenderCupertinoTextSelectionToolbarShape renderObject) { |
| renderObject |
| ..anchor = _anchor |
| ..isAbove = _isAbove; |
| } |
| } |
| |
| // Clips the child into the shape of the default iOS text selection toolbar. |
| // |
| // The shape is a rounded rectangle with a protruding arrow pointing at the |
| // given anchor in the direction indicated by isAbove. |
| // |
| // In order to allow the child to render itself independent of isAbove, its |
| // height is clipped on both the top and the bottom, leaving the arrow remaining |
| // on the necessary side. |
| class _RenderCupertinoTextSelectionToolbarShape extends RenderShiftedBox { |
| _RenderCupertinoTextSelectionToolbarShape( |
| this._anchor, |
| this._isAbove, |
| super.child, |
| ); |
| |
| @override |
| bool get isRepaintBoundary => true; |
| |
| Offset get anchor => _anchor; |
| Offset _anchor; |
| set anchor(Offset value) { |
| if (value == _anchor) { |
| return; |
| } |
| _anchor = value; |
| markNeedsLayout(); |
| } |
| |
| bool get isAbove => _isAbove; |
| bool _isAbove; |
| set isAbove(bool value) { |
| if (_isAbove == value) { |
| return; |
| } |
| _isAbove = value; |
| markNeedsLayout(); |
| } |
| |
| // The child is tall enough to have the arrow clipped out of it on both sides |
| // top and bottom. Since _kToolbarHeight includes the height of one arrow, the |
| // total height that the child is given is that plus one more arrow height. |
| // The extra height on the opposite side of the arrow will be clipped out. By |
| // using this approach, the buttons don't need any special padding that |
| // depends on isAbove. |
| final BoxConstraints _heightConstraint = BoxConstraints.tightFor( |
| height: _kToolbarHeight + _kToolbarArrowSize.height, |
| ); |
| |
| @override |
| void performLayout() { |
| if (child == null) { |
| return; |
| } |
| |
| final BoxConstraints enforcedConstraint = constraints.loosen(); |
| |
| child!.layout(_heightConstraint.enforce(enforcedConstraint), parentUsesSize: true); |
| |
| // The height of one arrow will be clipped off of the child, so adjust the |
| // size and position to remove that piece from the layout. |
| final BoxParentData childParentData = child!.parentData! as BoxParentData; |
| childParentData.offset = Offset( |
| 0.0, |
| _isAbove ? -_kToolbarArrowSize.height : 0.0, |
| ); |
| size = Size( |
| child!.size.width, |
| child!.size.height - _kToolbarArrowSize.height, |
| ); |
| } |
| |
| // The path is described in the toolbar's coordinate system. |
| Path _clipPath() { |
| final BoxParentData childParentData = child!.parentData! as BoxParentData; |
| final Path rrect = Path() |
| ..addRRect( |
| RRect.fromRectAndRadius( |
| Offset(0.0, _kToolbarArrowSize.height) |
| & Size( |
| child!.size.width, |
| child!.size.height - _kToolbarArrowSize.height * 2, |
| ), |
| _kToolbarBorderRadius, |
| ), |
| ); |
| |
| final Offset localAnchor = globalToLocal(_anchor); |
| final double centerX = childParentData.offset.dx + child!.size.width / 2; |
| final double arrowXOffsetFromCenter = localAnchor.dx - centerX; |
| final double arrowTipX = child!.size.width / 2 + arrowXOffsetFromCenter; |
| |
| final double arrowBaseY = _isAbove |
| ? child!.size.height - _kToolbarArrowSize.height |
| : _kToolbarArrowSize.height; |
| |
| final double arrowTipY = _isAbove ? child!.size.height : 0; |
| |
| final Path arrow = Path() |
| ..moveTo(arrowTipX, arrowTipY) |
| ..lineTo(arrowTipX - _kToolbarArrowSize.width / 2, arrowBaseY) |
| ..lineTo(arrowTipX + _kToolbarArrowSize.width / 2, arrowBaseY) |
| ..close(); |
| |
| return Path.combine(PathOperation.union, rrect, arrow); |
| } |
| |
| @override |
| void paint(PaintingContext context, Offset offset) { |
| if (child == null) { |
| return; |
| } |
| |
| final BoxParentData childParentData = child!.parentData! as BoxParentData; |
| _clipPathLayer.layer = context.pushClipPath( |
| needsCompositing, |
| offset + childParentData.offset, |
| Offset.zero & child!.size, |
| _clipPath(), |
| (PaintingContext innerContext, Offset innerOffset) => innerContext.paintChild(child!, innerOffset), |
| oldLayer: _clipPathLayer.layer, |
| ); |
| } |
| |
| final LayerHandle<ClipPathLayer> _clipPathLayer = LayerHandle<ClipPathLayer>(); |
| Paint? _debugPaint; |
| |
| @override |
| void dispose() { |
| _clipPathLayer.layer = null; |
| super.dispose(); |
| } |
| |
| @override |
| void debugPaintSize(PaintingContext context, Offset offset) { |
| assert(() { |
| if (child == null) { |
| return true; |
| } |
| |
| _debugPaint ??= Paint() |
| ..shader = ui.Gradient.linear( |
| Offset.zero, |
| const Offset(10.0, 10.0), |
| const <Color>[Color(0x00000000), Color(0xFFFF00FF), Color(0xFFFF00FF), Color(0x00000000)], |
| const <double>[0.25, 0.25, 0.75, 0.75], |
| TileMode.repeated, |
| ) |
| ..strokeWidth = 2.0 |
| ..style = PaintingStyle.stroke; |
| |
| final BoxParentData childParentData = child!.parentData! as BoxParentData; |
| context.canvas.drawPath(_clipPath().shift(offset + childParentData.offset), _debugPaint!); |
| return true; |
| }()); |
| } |
| |
| @override |
| bool hitTestChildren(BoxHitTestResult result, { required Offset position }) { |
| // Positions outside of the clipped area of the child are not counted as |
| // hits. |
| final BoxParentData childParentData = child!.parentData! as BoxParentData; |
| final Rect hitBox = Rect.fromLTWH( |
| childParentData.offset.dx, |
| childParentData.offset.dy + _kToolbarArrowSize.height, |
| child!.size.width, |
| child!.size.height - _kToolbarArrowSize.height * 2, |
| ); |
| if (!hitBox.contains(position)) { |
| return false; |
| } |
| |
| return super.hitTestChildren(result, position: position); |
| } |
| } |
| |
| // A toolbar containing the given children. If they overflow the width |
| // available, then the menu will be paginated with the overflowing children |
| // displayed on subsequent pages. |
| // |
| // The anchor should be in global coordinates. |
| class _CupertinoTextSelectionToolbarContent extends StatefulWidget { |
| const _CupertinoTextSelectionToolbarContent({ |
| required this.anchor, |
| required this.isAbove, |
| required this.toolbarBuilder, |
| required this.children, |
| }) : assert(children.length > 0); |
| |
| final Offset anchor; |
| final List<Widget> children; |
| final bool isAbove; |
| final CupertinoToolbarBuilder toolbarBuilder; |
| |
| @override |
| _CupertinoTextSelectionToolbarContentState createState() => _CupertinoTextSelectionToolbarContentState(); |
| } |
| |
| class _CupertinoTextSelectionToolbarContentState extends State<_CupertinoTextSelectionToolbarContent> with TickerProviderStateMixin { |
| // Controls the fading of the buttons within the menu during page transitions. |
| late AnimationController _controller; |
| int? _nextPage; |
| int _page = 0; |
| |
| final GlobalKey _toolbarItemsKey = GlobalKey(); |
| |
| void _onHorizontalDragEnd(DragEndDetails details) { |
| final double? velocity = details.primaryVelocity; |
| |
| if (velocity != null && velocity != 0) { |
| if (velocity > 0) { |
| _handlePreviousPage(); |
| } else { |
| _handleNextPage(); |
| } |
| } |
| } |
| |
| void _handleNextPage() { |
| final RenderBox? renderToolbar = |
| _toolbarItemsKey.currentContext?.findRenderObject() as RenderBox?; |
| |
| if (renderToolbar is _RenderCupertinoTextSelectionToolbarItems && renderToolbar.hasNextPage) { |
| _controller.reverse(); |
| _controller.addStatusListener(_statusListener); |
| _nextPage = _page + 1; |
| } |
| } |
| |
| void _handlePreviousPage() { |
| final RenderBox? renderToolbar = |
| _toolbarItemsKey.currentContext?.findRenderObject() as RenderBox?; |
| |
| if (renderToolbar is _RenderCupertinoTextSelectionToolbarItems && renderToolbar.hasPreviousPage) { |
| _controller.reverse(); |
| _controller.addStatusListener(_statusListener); |
| _nextPage = _page - 1; |
| } |
| } |
| |
| void _statusListener(AnimationStatus status) { |
| if (status != AnimationStatus.dismissed) { |
| return; |
| } |
| |
| setState(() { |
| _page = _nextPage!; |
| _nextPage = null; |
| }); |
| _controller.forward(); |
| _controller.removeStatusListener(_statusListener); |
| } |
| |
| @override |
| void initState() { |
| super.initState(); |
| _controller = AnimationController( |
| value: 1.0, |
| vsync: this, |
| // This was eyeballed on a physical iOS device running iOS 13. |
| duration: _kToolbarTransitionDuration, |
| ); |
| } |
| |
| @override |
| void didUpdateWidget(_CupertinoTextSelectionToolbarContent oldWidget) { |
| super.didUpdateWidget(oldWidget); |
| // If the children are changing, the current page should be reset. |
| if (widget.children != oldWidget.children) { |
| _page = 0; |
| _nextPage = null; |
| _controller.forward(); |
| _controller.removeStatusListener(_statusListener); |
| } |
| } |
| |
| @override |
| void dispose() { |
| _controller.dispose(); |
| super.dispose(); |
| } |
| |
| Widget _createChevron({required bool isLeft}) { |
| final Color color = _kToolbarTextColor.resolveFrom(context); |
| |
| return IgnorePointer( |
| child: Center( |
| // If widthFactor is not set to 0, the button is given unbounded width. |
| widthFactor: 0, |
| child: CustomPaint( |
| painter: isLeft |
| ? _LeftCupertinoChevronPainter(color: color) |
| : _RightCupertinoChevronPainter(color: color), |
| size: const Size.square(_kToolbarChevronSize), |
| ), |
| ), |
| ); |
| } |
| |
| @override |
| Widget build(BuildContext context) { |
| return widget.toolbarBuilder(context, widget.anchor, widget.isAbove, FadeTransition( |
| opacity: _controller, |
| child: AnimatedSize( |
| duration: _kToolbarTransitionDuration, |
| curve: Curves.decelerate, |
| child: GestureDetector( |
| onHorizontalDragEnd: _onHorizontalDragEnd, |
| child: _CupertinoTextSelectionToolbarItems( |
| key: _toolbarItemsKey, |
| page: _page, |
| backButton: CupertinoTextSelectionToolbarButton( |
| onPressed: _handlePreviousPage, |
| child: _createChevron(isLeft: true), |
| ), |
| dividerColor: _kToolbarDividerColor.resolveFrom(context), |
| dividerWidth: 1.0 / MediaQuery.devicePixelRatioOf(context), |
| nextButton: CupertinoTextSelectionToolbarButton( |
| onPressed: _handleNextPage, |
| child: _createChevron(isLeft: false), |
| ), |
| children: widget.children, |
| ), |
| ), |
| ), |
| )); |
| } |
| } |
| |
| // These classes help to test the chevrons. As _CupertinoChevronPainter must be |
| // private, it's possible to check the runtimeType of each chevron to know if |
| // they should be pointing left or right. |
| class _LeftCupertinoChevronPainter extends _CupertinoChevronPainter { |
| _LeftCupertinoChevronPainter({required super.color}) : super(isLeft: true); |
| } |
| class _RightCupertinoChevronPainter extends _CupertinoChevronPainter { |
| _RightCupertinoChevronPainter({required super.color}) : super(isLeft: false); |
| } |
| abstract class _CupertinoChevronPainter extends CustomPainter { |
| _CupertinoChevronPainter({ |
| required this.color, |
| required this.isLeft, |
| }); |
| |
| final Color color; |
| |
| /// If this is true the chevron will point left, else it will point right. |
| final bool isLeft; |
| |
| @override |
| void paint(Canvas canvas, Size size) { |
| assert(size.height == size.width, 'size must have the same height and width'); |
| |
| final double iconSize = size.height; |
| |
| // The chevron is half of a square rotated 45Ëš, so it needs a margin of 1/4 |
| // its size on each side to be centered horizontally. |
| // |
| // If pointing left, it means the left half of a square is being used and |
| // the offset is positive. If pointing right, the right half is being used |
| // and the offset is negative. |
| final Offset centerOffset = Offset( |
| iconSize / 4 * (isLeft ? 1 : -1), |
| 0, |
| ); |
| |
| final Offset firstPoint = Offset(iconSize / 2, 0) + centerOffset; |
| final Offset middlePoint = Offset(isLeft ? 0 : iconSize, iconSize / 2) + centerOffset; |
| final Offset lowerPoint = Offset(iconSize / 2, iconSize) + centerOffset; |
| |
| final Paint paint = Paint() |
| ..color = color |
| ..style = PaintingStyle.stroke |
| ..strokeWidth = _kToolbarChevronThickness |
| ..strokeCap = StrokeCap.round |
| ..strokeJoin = StrokeJoin.round; |
| |
| // `drawLine` is used here because it's testable. When using `drawPath`, |
| // there's no way to test that the chevron points to the correct side. |
| canvas.drawLine(firstPoint, middlePoint, paint); |
| canvas.drawLine(middlePoint, lowerPoint, paint); |
| } |
| |
| @override |
| bool shouldRepaint(_CupertinoChevronPainter oldDelegate) => |
| oldDelegate.color != color || oldDelegate.isLeft != isLeft; |
| } |
| |
| // The custom RenderObjectWidget that, together with |
| // _RenderCupertinoTextSelectionToolbarItems and |
| // _CupertinoTextSelectionToolbarItemsElement, paginates the menu items. |
| class _CupertinoTextSelectionToolbarItems extends RenderObjectWidget { |
| _CupertinoTextSelectionToolbarItems({ |
| super.key, |
| required this.page, |
| required this.children, |
| required this.backButton, |
| required this.dividerColor, |
| required this.dividerWidth, |
| required this.nextButton, |
| }) : assert(children.isNotEmpty); |
| |
| final Widget backButton; |
| final List<Widget> children; |
| final Color dividerColor; |
| final double dividerWidth; |
| final Widget nextButton; |
| final int page; |
| |
| @override |
| _RenderCupertinoTextSelectionToolbarItems createRenderObject(BuildContext context) { |
| return _RenderCupertinoTextSelectionToolbarItems( |
| dividerColor: dividerColor, |
| dividerWidth: dividerWidth, |
| page: page, |
| ); |
| } |
| |
| @override |
| void updateRenderObject(BuildContext context, _RenderCupertinoTextSelectionToolbarItems renderObject) { |
| renderObject |
| ..page = page |
| ..dividerColor = dividerColor |
| ..dividerWidth = dividerWidth; |
| } |
| |
| @override |
| _CupertinoTextSelectionToolbarItemsElement createElement() => _CupertinoTextSelectionToolbarItemsElement(this); |
| } |
| |
| // The custom RenderObjectElement that helps paginate the menu items. |
| class _CupertinoTextSelectionToolbarItemsElement extends RenderObjectElement { |
| _CupertinoTextSelectionToolbarItemsElement( |
| _CupertinoTextSelectionToolbarItems super.widget, |
| ); |
| |
| late List<Element> _children; |
| final Map<_CupertinoTextSelectionToolbarItemsSlot, Element> slotToChild = <_CupertinoTextSelectionToolbarItemsSlot, Element>{}; |
| |
| // We keep a set of forgotten children to avoid O(n^2) work walking _children |
| // repeatedly to remove children. |
| final Set<Element> _forgottenChildren = HashSet<Element>(); |
| |
| @override |
| _RenderCupertinoTextSelectionToolbarItems get renderObject => super.renderObject as _RenderCupertinoTextSelectionToolbarItems; |
| |
| void _updateRenderObject(RenderBox? child, _CupertinoTextSelectionToolbarItemsSlot slot) { |
| switch (slot) { |
| case _CupertinoTextSelectionToolbarItemsSlot.backButton: |
| renderObject.backButton = child; |
| case _CupertinoTextSelectionToolbarItemsSlot.nextButton: |
| renderObject.nextButton = child; |
| } |
| } |
| |
| @override |
| void insertRenderObjectChild(RenderObject child, Object? slot) { |
| if (slot is _CupertinoTextSelectionToolbarItemsSlot) { |
| assert(child is RenderBox); |
| _updateRenderObject(child as RenderBox, slot); |
| assert(renderObject.slottedChildren.containsKey(slot)); |
| return; |
| } |
| if (slot is IndexedSlot) { |
| assert(renderObject.debugValidateChild(child)); |
| renderObject.insert(child as RenderBox, after: slot.value?.renderObject as RenderBox?); |
| return; |
| } |
| assert(false, 'slot must be _CupertinoTextSelectionToolbarItemsSlot or IndexedSlot'); |
| } |
| |
| // This is not reachable for children that don't have an IndexedSlot. |
| @override |
| void moveRenderObjectChild(RenderObject child, IndexedSlot<Element> oldSlot, IndexedSlot<Element> newSlot) { |
| assert(child.parent == renderObject); |
| renderObject.move(child as RenderBox, after: newSlot.value.renderObject as RenderBox?); |
| } |
| |
| static bool _shouldPaint(Element child) { |
| return (child.renderObject!.parentData! as ToolbarItemsParentData).shouldPaint; |
| } |
| |
| @override |
| void removeRenderObjectChild(RenderObject child, Object? slot) { |
| // Check if the child is in a slot. |
| if (slot is _CupertinoTextSelectionToolbarItemsSlot) { |
| assert(child is RenderBox); |
| assert(renderObject.slottedChildren.containsKey(slot)); |
| _updateRenderObject(null, slot); |
| assert(!renderObject.slottedChildren.containsKey(slot)); |
| return; |
| } |
| |
| // Otherwise look for it in the list of children. |
| assert(slot is IndexedSlot); |
| assert(child.parent == renderObject); |
| renderObject.remove(child as RenderBox); |
| } |
| |
| @override |
| void visitChildren(ElementVisitor visitor) { |
| slotToChild.values.forEach(visitor); |
| for (final Element child in _children) { |
| if (!_forgottenChildren.contains(child)) { |
| visitor(child); |
| } |
| } |
| } |
| |
| @override |
| void forgetChild(Element child) { |
| assert(slotToChild.containsValue(child) || _children.contains(child)); |
| assert(!_forgottenChildren.contains(child)); |
| // Handle forgetting a child in children or in a slot. |
| if (slotToChild.containsKey(child.slot)) { |
| final _CupertinoTextSelectionToolbarItemsSlot slot = child.slot! as _CupertinoTextSelectionToolbarItemsSlot; |
| slotToChild.remove(slot); |
| } else { |
| _forgottenChildren.add(child); |
| } |
| super.forgetChild(child); |
| } |
| |
| // Mount or update slotted child. |
| void _mountChild(Widget widget, _CupertinoTextSelectionToolbarItemsSlot slot) { |
| final Element? oldChild = slotToChild[slot]; |
| final Element? newChild = updateChild(oldChild, widget, slot); |
| if (oldChild != null) { |
| slotToChild.remove(slot); |
| } |
| if (newChild != null) { |
| slotToChild[slot] = newChild; |
| } |
| } |
| |
| @override |
| void mount(Element? parent, Object? newSlot) { |
| super.mount(parent, newSlot); |
| // Mount slotted children. |
| final _CupertinoTextSelectionToolbarItems toolbarItems = widget as _CupertinoTextSelectionToolbarItems; |
| _mountChild(toolbarItems.backButton, _CupertinoTextSelectionToolbarItemsSlot.backButton); |
| _mountChild(toolbarItems.nextButton, _CupertinoTextSelectionToolbarItemsSlot.nextButton); |
| |
| // Mount list children. |
| _children = List<Element>.filled(toolbarItems.children.length, _NullElement.instance); |
| Element? previousChild; |
| for (int i = 0; i < _children.length; i += 1) { |
| final Element newChild = inflateWidget(toolbarItems.children[i], IndexedSlot<Element?>(i, previousChild)); |
| _children[i] = newChild; |
| previousChild = newChild; |
| } |
| } |
| |
| @override |
| void debugVisitOnstageChildren(ElementVisitor visitor) { |
| // Visit slot children. |
| for (final Element child in slotToChild.values) { |
| if (_shouldPaint(child) && !_forgottenChildren.contains(child)) { |
| visitor(child); |
| } |
| } |
| // Visit list children. |
| _children |
| .where((Element child) => !_forgottenChildren.contains(child) && _shouldPaint(child)) |
| .forEach(visitor); |
| } |
| |
| @override |
| void update(_CupertinoTextSelectionToolbarItems newWidget) { |
| super.update(newWidget); |
| assert(widget == newWidget); |
| |
| // Update slotted children. |
| final _CupertinoTextSelectionToolbarItems toolbarItems = widget as _CupertinoTextSelectionToolbarItems; |
| _mountChild(toolbarItems.backButton, _CupertinoTextSelectionToolbarItemsSlot.backButton); |
| _mountChild(toolbarItems.nextButton, _CupertinoTextSelectionToolbarItemsSlot.nextButton); |
| |
| // Update list children. |
| _children = updateChildren(_children, toolbarItems.children, forgottenChildren: _forgottenChildren); |
| _forgottenChildren.clear(); |
| } |
| } |
| |
| // The custom RenderBox that helps paginate the menu items. |
| class _RenderCupertinoTextSelectionToolbarItems extends RenderBox with ContainerRenderObjectMixin<RenderBox, ToolbarItemsParentData>, RenderBoxContainerDefaultsMixin<RenderBox, ToolbarItemsParentData> { |
| _RenderCupertinoTextSelectionToolbarItems({ |
| required Color dividerColor, |
| required double dividerWidth, |
| required int page, |
| }) : _dividerColor = dividerColor, |
| _dividerWidth = dividerWidth, |
| _page = page, |
| super(); |
| |
| final Map<_CupertinoTextSelectionToolbarItemsSlot, RenderBox> slottedChildren = <_CupertinoTextSelectionToolbarItemsSlot, RenderBox>{}; |
| |
| late bool hasNextPage; |
| late bool hasPreviousPage; |
| |
| RenderBox? _updateChild(RenderBox? oldChild, RenderBox? newChild, _CupertinoTextSelectionToolbarItemsSlot slot) { |
| if (oldChild != null) { |
| dropChild(oldChild); |
| slottedChildren.remove(slot); |
| } |
| if (newChild != null) { |
| slottedChildren[slot] = newChild; |
| adoptChild(newChild); |
| } |
| return newChild; |
| } |
| |
| bool _isSlottedChild(RenderBox child) { |
| return child == _backButton || child == _nextButton; |
| } |
| |
| int _page; |
| int get page => _page; |
| set page(int value) { |
| if (value == _page) { |
| return; |
| } |
| _page = value; |
| markNeedsLayout(); |
| } |
| |
| Color _dividerColor; |
| Color get dividerColor => _dividerColor; |
| set dividerColor(Color value) { |
| if (value == _dividerColor) { |
| return; |
| } |
| _dividerColor = value; |
| markNeedsLayout(); |
| } |
| |
| double _dividerWidth; |
| double get dividerWidth => _dividerWidth; |
| set dividerWidth(double value) { |
| if (value == _dividerWidth) { |
| return; |
| } |
| _dividerWidth = value; |
| markNeedsLayout(); |
| } |
| |
| RenderBox? _backButton; |
| RenderBox? get backButton => _backButton; |
| set backButton(RenderBox? value) { |
| _backButton = _updateChild(_backButton, value, _CupertinoTextSelectionToolbarItemsSlot.backButton); |
| } |
| |
| RenderBox? _nextButton; |
| RenderBox? get nextButton => _nextButton; |
| set nextButton(RenderBox? value) { |
| _nextButton = _updateChild(_nextButton, value, _CupertinoTextSelectionToolbarItemsSlot.nextButton); |
| } |
| |
| @override |
| void performLayout() { |
| if (firstChild == null) { |
| size = constraints.smallest; |
| return; |
| } |
| |
| // Layout slotted children. |
| _backButton!.layout(constraints.loosen(), parentUsesSize: true); |
| _nextButton!.layout(constraints.loosen(), parentUsesSize: true); |
| |
| final double subsequentPageButtonsWidth = |
| _backButton!.size.width + _nextButton!.size.width; |
| double currentButtonPosition = 0.0; |
| late double toolbarWidth; // The width of the whole widget. |
| late double greatestHeight = 0.0; |
| late double firstPageWidth; |
| int currentPage = 0; |
| int i = -1; |
| visitChildren((RenderObject renderObjectChild) { |
| i++; |
| final RenderBox child = renderObjectChild as RenderBox; |
| final ToolbarItemsParentData childParentData = |
| child.parentData! as ToolbarItemsParentData; |
| childParentData.shouldPaint = false; |
| |
| // Skip slotted children and children on pages after the visible page. |
| if (_isSlottedChild(child) || currentPage > _page) { |
| return; |
| } |
| |
| double paginationButtonsWidth = 0.0; |
| if (currentPage == 0) { |
| // If this is the last child, it's ok to fit without a forward button. |
| // Note childCount doesn't include slotted children which come before the list ones. |
| paginationButtonsWidth = |
| i == childCount + 1 ? 0.0 : _nextButton!.size.width; |
| } else { |
| paginationButtonsWidth = subsequentPageButtonsWidth; |
| } |
| |
| // The width of the menu is set by the first page. |
| child.layout( |
| BoxConstraints.loose(Size( |
| (currentPage == 0 ? constraints.maxWidth : firstPageWidth) - paginationButtonsWidth, |
| constraints.maxHeight, |
| )), |
| parentUsesSize: true, |
| ); |
| |
| greatestHeight = child.size.height > greatestHeight |
| ? child.size.height |
| : greatestHeight; |
| |
| // If this child causes the current page to overflow, move to the next |
| // page and relayout the child. |
| final double currentWidth = |
| currentButtonPosition + paginationButtonsWidth + child.size.width; |
| if (currentWidth > constraints.maxWidth) { |
| currentPage++; |
| currentButtonPosition = _backButton!.size.width + dividerWidth; |
| paginationButtonsWidth = _backButton!.size.width + _nextButton!.size.width; |
| child.layout( |
| BoxConstraints.loose(Size( |
| firstPageWidth - paginationButtonsWidth, |
| constraints.maxHeight, |
| )), |
| parentUsesSize: true, |
| ); |
| } |
| childParentData.offset = Offset(currentButtonPosition, 0.0); |
| currentButtonPosition += child.size.width + dividerWidth; |
| childParentData.shouldPaint = currentPage == page; |
| |
| if (currentPage == 0) { |
| firstPageWidth = currentButtonPosition + _nextButton!.size.width; |
| } |
| if (currentPage == page) { |
| toolbarWidth = currentButtonPosition; |
| } |
| }); |
| |
| // It shouldn't be possible to navigate beyond the last page. |
| assert(page <= currentPage); |
| |
| // Position page nav buttons. |
| if (currentPage > 0) { |
| final ToolbarItemsParentData nextButtonParentData = |
| _nextButton!.parentData! as ToolbarItemsParentData; |
| final ToolbarItemsParentData backButtonParentData = |
| _backButton!.parentData! as ToolbarItemsParentData; |
| // The forward button only shows when there's a page after this one. |
| if (page != currentPage) { |
| nextButtonParentData.offset = Offset(toolbarWidth, 0.0); |
| nextButtonParentData.shouldPaint = true; |
| toolbarWidth += nextButton!.size.width; |
| } |
| if (page > 0) { |
| backButtonParentData.offset = Offset.zero; |
| backButtonParentData.shouldPaint = true; |
| // No need to add the width of the back button to toolbarWidth here. It's |
| // already been taken care of when laying out the children to |
| // accommodate the back button. |
| } |
| |
| // Update previous/next page values so that we can check in the horizontal |
| // drag gesture callback if it's possible to navigate. |
| hasNextPage = page != currentPage; |
| hasPreviousPage = page > 0; |
| } else { |
| // No divider for the next button when there's only one page. |
| toolbarWidth -= dividerWidth; |
| } |
| |
| size = constraints.constrain(Size(toolbarWidth, greatestHeight)); |
| } |
| |
| @override |
| void paint(PaintingContext context, Offset offset) { |
| visitChildren((RenderObject renderObjectChild) { |
| final RenderBox child = renderObjectChild as RenderBox; |
| final ToolbarItemsParentData childParentData = child.parentData! as ToolbarItemsParentData; |
| |
| if (childParentData.shouldPaint) { |
| final Offset childOffset = childParentData.offset + offset; |
| context.paintChild(child, childOffset); |
| |
| // backButton is a slotted child and is not in the children list, so its |
| // childParentData.nextSibling is null. So either when there's a |
| // nextSibling or when child is the backButton, draw a divider to the |
| // child's right. |
| if (childParentData.nextSibling != null || child == backButton) { |
| context.canvas.drawLine( |
| Offset(child.size.width, 0) + childOffset, |
| Offset(child.size.width, child.size.height) + childOffset, |
| Paint()..color = dividerColor, |
| ); |
| } |
| } |
| }); |
| } |
| |
| @override |
| void setupParentData(RenderBox child) { |
| if (child.parentData is! ToolbarItemsParentData) { |
| child.parentData = ToolbarItemsParentData(); |
| } |
| } |
| |
| // Returns true if the single child is hit by the given position. |
| static bool hitTestChild(RenderBox? child, BoxHitTestResult result, { required Offset position }) { |
| if (child == null) { |
| return false; |
| } |
| final ToolbarItemsParentData childParentData = |
| child.parentData! as ToolbarItemsParentData; |
| if (!childParentData.shouldPaint) { |
| return false; |
| } |
| return result.addWithPaintOffset( |
| offset: childParentData.offset, |
| position: position, |
| hitTest: (BoxHitTestResult result, Offset transformed) { |
| assert(transformed == position - childParentData.offset); |
| return child.hitTest(result, position: transformed); |
| }, |
| ); |
| } |
| |
| @override |
| bool hitTestChildren(BoxHitTestResult result, { required Offset position }) { |
| // Hit test list children. |
| RenderBox? child = lastChild; |
| while (child != null) { |
| final ToolbarItemsParentData childParentData = child.parentData! as ToolbarItemsParentData; |
| |
| // Don't hit test children that aren't shown. |
| if (!childParentData.shouldPaint) { |
| child = childParentData.previousSibling; |
| continue; |
| } |
| |
| if (hitTestChild(child, result, position: position)) { |
| return true; |
| } |
| child = childParentData.previousSibling; |
| } |
| |
| // Hit test slot children. |
| if (hitTestChild(backButton, result, position: position)) { |
| return true; |
| } |
| if (hitTestChild(nextButton, result, position: position)) { |
| return true; |
| } |
| |
| return false; |
| } |
| |
| @override |
| void attach(PipelineOwner owner) { |
| // Attach list children. |
| super.attach(owner); |
| |
| // Attach slot children. |
| for (final RenderBox child in slottedChildren.values) { |
| child.attach(owner); |
| } |
| } |
| |
| @override |
| void detach() { |
| // Detach list children. |
| super.detach(); |
| |
| // Detach slot children. |
| for (final RenderBox child in slottedChildren.values) { |
| child.detach(); |
| } |
| } |
| |
| @override |
| void redepthChildren() { |
| visitChildren((RenderObject renderObjectChild) { |
| final RenderBox child = renderObjectChild as RenderBox; |
| redepthChild(child); |
| }); |
| } |
| |
| @override |
| void visitChildren(RenderObjectVisitor visitor) { |
| // Visit the slotted children. |
| if (_backButton != null) { |
| visitor(_backButton!); |
| } |
| if (_nextButton != null) { |
| visitor(_nextButton!); |
| } |
| // Visit the list children. |
| super.visitChildren(visitor); |
| } |
| |
| // Visit only the children that should be painted. |
| @override |
| void visitChildrenForSemantics(RenderObjectVisitor visitor) { |
| visitChildren((RenderObject renderObjectChild) { |
| final RenderBox child = renderObjectChild as RenderBox; |
| final ToolbarItemsParentData childParentData = child.parentData! as ToolbarItemsParentData; |
| if (childParentData.shouldPaint) { |
| visitor(renderObjectChild); |
| } |
| }); |
| } |
| |
| @override |
| List<DiagnosticsNode> debugDescribeChildren() { |
| final List<DiagnosticsNode> value = <DiagnosticsNode>[]; |
| visitChildren((RenderObject renderObjectChild) { |
| final RenderBox child = renderObjectChild as RenderBox; |
| if (child == backButton) { |
| value.add(child.toDiagnosticsNode(name: 'back button')); |
| } else if (child == nextButton) { |
| value.add(child.toDiagnosticsNode(name: 'next button')); |
| |
| // List children. |
| } else { |
| value.add(child.toDiagnosticsNode(name: 'menu item')); |
| } |
| }); |
| return value; |
| } |
| } |
| |
| // The slots that can be occupied by widgets in |
| // _CupertinoTextSelectionToolbarItems, excluding the list of children. |
| enum _CupertinoTextSelectionToolbarItemsSlot { |
| backButton, |
| nextButton, |
| } |
| |
| class _NullElement extends Element { |
| _NullElement() : super(const _NullWidget()); |
| |
| static _NullElement instance = _NullElement(); |
| |
| @override |
| bool get debugDoingBuild => throw UnimplementedError(); |
| } |
| |
| class _NullWidget extends Widget { |
| const _NullWidget(); |
| |
| @override |
| Element createElement() => throw UnimplementedError(); |
| } |