platform_view.dart 26.5 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5 6 7
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:ui';

import 'package:flutter/foundation.dart';
8
import 'package:flutter/gestures.dart';
9
import 'package:flutter/semantics.dart';
10 11 12 13
import 'package:flutter/services.dart';

import 'box.dart';
import 'layer.dart';
14
import 'mouse_cursor.dart';
15
import 'mouse_tracking.dart';
16 17 18
import 'object.dart';


19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
/// How an embedded platform view behave during hit tests.
enum PlatformViewHitTestBehavior {
  /// Opaque targets can be hit by hit tests, causing them to both receive
  /// events within their bounds and prevent targets visually behind them from
  /// also receiving events.
  opaque,

  /// Translucent targets both receive events within their bounds and permit
  /// targets visually behind them to also receive events.
  translucent,

  /// Transparent targets don't receive events within their bounds and permit
  /// targets visually behind them to receive events.
  transparent,
}

35 36 37 38 39 40
enum _PlatformViewState {
  uninitialized,
  resizing,
  ready,
}

41
bool _factoryTypesSetEquals<T>(Set<Factory<T>>? a, Set<Factory<T>>? b) {
42 43 44 45 46 47 48 49 50 51 52 53 54
  if (a == b) {
    return true;
  }
  if (a == null ||  b == null) {
    return false;
  }
  return setEquals(_factoriesTypeSet(a), _factoriesTypeSet(b));
}

Set<Type> _factoriesTypeSet<T>(Set<Factory<T>> factories) {
  return factories.map<Type>((Factory<T> factory) => factory.type).toSet();
}

55 56
/// A render object for an Android view.
///
57 58
/// Requires Android API level 20 or greater.
///
59 60
/// [RenderAndroidView] is responsible for sizing, displaying and passing touch events to an
/// Android [View](https://developer.android.com/reference/android/view/View).
61
///
62
/// {@template flutter.rendering.platformView.layout}
63
/// The render object's layout behavior is to fill all available space, the parent of this object must
64
/// provide bounded layout constraints.
65
/// {@endtemplate}
66
///
67
/// {@template flutter.rendering.platformView.gestures}
68
/// The render object participates in Flutter's gesture arenas, and dispatches touch events to the
69 70 71 72 73
/// platform view iff it won the arena. Specific gestures that should be dispatched to the platform
/// view can be specified with factories in the `gestureRecognizers` constructor parameter or
/// by calling `updateGestureRecognizers`. If the set of gesture recognizers is empty, the gesture
/// will be dispatched to the platform view iff it was not claimed by any other gesture recognizer.
/// {@endtemplate}
74 75
///
/// See also:
76
///
77 78
///  * [AndroidView] which is a widget that is used to show an Android view.
///  * [PlatformViewsService] which is a service for controlling platform views.
79
class RenderAndroidView extends RenderBox with _PlatformViewGestureMixin {
80 81 82

  /// Creates a render object for an Android view.
  RenderAndroidView({
83 84 85
    required AndroidViewController viewController,
    required PlatformViewHitTestBehavior hitTestBehavior,
    required Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizers,
86
    Clip clipBehavior = Clip.hardEdge,
87
  }) : assert(viewController != null),
88
       assert(hitTestBehavior != null),
89
       assert(gestureRecognizers != null),
90 91 92
       assert(clipBehavior != null),
       _viewController = viewController,
       _clipBehavior = clipBehavior {
93
    _viewController.pointTransformer = (Offset offset) => globalToLocal(offset);
94
    updateGestureRecognizers(gestureRecognizers);
95
    _viewController.addOnPlatformViewCreatedListener(_onPlatformViewCreated);
96
    this.hitTestBehavior = hitTestBehavior;
97
  }
98 99 100 101 102 103 104 105 106 107 108

  _PlatformViewState _state = _PlatformViewState.uninitialized;

  /// The Android view controller for the Android view associated with this render object.
  AndroidViewController get viewcontroller => _viewController;
  AndroidViewController _viewController;
  /// Sets a new Android view controller.
  ///
  /// `viewController` must not be null.
  set viewController(AndroidViewController viewController) {
    assert(_viewController != null);
109
    assert(viewController != null);
110 111
    if (_viewController == viewController)
      return;
112
    _viewController.removeOnPlatformViewCreatedListener(_onPlatformViewCreated);
113 114
    _viewController = viewController;
    _sizePlatformView();
115 116 117 118 119 120
    if (_viewController.isCreated) {
      markNeedsSemanticsUpdate();
    }
    _viewController.addOnPlatformViewCreatedListener(_onPlatformViewCreated);
  }

121 122 123 124 125 126 127 128 129 130 131 132 133 134
  /// {@macro flutter.widgets.Clip}
  ///
  /// Defaults to [Clip.hardEdge], and must not be null.
  Clip get clipBehavior => _clipBehavior;
  Clip _clipBehavior = Clip.hardEdge;
  set clipBehavior(Clip value) {
    assert(value != null);
    if (value != _clipBehavior) {
      _clipBehavior = value;
      markNeedsPaint();
      markNeedsSemanticsUpdate();
    }
  }

135 136
  void _onPlatformViewCreated(int id) {
    markNeedsSemanticsUpdate();
137 138
  }

139 140
  /// {@template flutter.rendering.platformView.updateGestureRecognizers}
  /// Updates which gestures should be forwarded to the platform view.
141
  ///
142 143
  /// Gesture recognizers created by factories in this set participate in the gesture arena for each
  /// pointer that was put down on the render box. If any of the recognizers on this list wins the
144 145
  /// gesture arena, the entire pointer event sequence starting from the pointer down event
  /// will be dispatched to the Android view.
146 147 148 149 150
  ///
  /// The `gestureRecognizers` property must not contain more than one factory with the same [Factory.type].
  ///
  /// Setting a new set of gesture recognizer factories with the same [Factory.type]s as the current
  /// set has no effect, because the factories' constructors would have already been called with the previous set.
151
  /// {@endtemplate}
152 153 154 155
  ///
  /// Any active gesture arena the Android view participates in is rejected when the
  /// set of gesture recognizers is changed.
  void updateGestureRecognizers(Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizers) {
156
    _updateGestureRecognizersWithCallBack(gestureRecognizers, _viewController.dispatchPointerEvent);
157 158
  }

159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
  @override
  bool get sizedByParent => true;

  @override
  bool get alwaysNeedsCompositing => true;

  @override
  bool get isRepaintBoundary => true;

  @override
  void performResize() {
    size = constraints.biggest;
    _sizePlatformView();
  }

174
  late Size _currentAndroidViewSize;
175

176
  Future<void> _sizePlatformView() async {
177 178 179 180
    // Android virtual displays cannot have a zero size.
    // Trying to size it to 0 crashes the app, which was happening when starting the app
    // with a locked screen (see: https://github.com/flutter/flutter/issues/20456).
    if (_state == _PlatformViewState.resizing || size.isEmpty) {
181 182 183 184
      return;
    }

    _state = _PlatformViewState.resizing;
185
    markNeedsPaint();
186 187 188 189

    Size targetSize;
    do {
      targetSize = size;
190 191
      await _viewController.setSize(targetSize);
      _currentAndroidViewSize = targetSize;
192 193 194 195 196 197 198 199 200 201 202 203 204 205
      // We've resized the platform view to targetSize, but it is possible that
      // while we were resizing the render object's size was changed again.
      // In that case we will resize the platform view again.
    } while (size != targetSize);

    _state = _PlatformViewState.ready;
    markNeedsPaint();
  }

  @override
  void paint(PaintingContext context, Offset offset) {
    if (_viewController.textureId == null)
      return;

206 207
    // Clip the texture if it's going to paint out of the bounds of the renter box
    // (see comment in _paintTexture for an explanation of when this happens).
208 209
    if (size.width < _currentAndroidViewSize.width || size.height < _currentAndroidViewSize.height && clipBehavior != Clip.none) {
      context.pushClipRect(true, offset, offset & size, _paintTexture, clipBehavior: clipBehavior);
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
      return;
    }

    _paintTexture(context, offset);
  }

  void _paintTexture(PaintingContext context, Offset offset) {
    // As resizing the Android view happens asynchronously we don't know exactly when is a
    // texture frame with the new size is ready for consumption.
    // TextureLayer is unaware of the texture frame's size and always maps it to the
    // specified rect. If the rect we provide has a different size from the current texture frame's
    // size the texture frame will be scaled.
    // To prevent unwanted scaling artifacts while resizing we freeze the texture frame, until
    // we know that a frame with the new size is in the buffer.
    // This guarantees that the size of the texture frame we're painting is always
    // _currentAndroidViewSize.
226
    context.addLayer(TextureLayer(
227
      rect: offset & _currentAndroidViewSize,
228
      textureId: _viewController.textureId!,
229
      freeze: _state == _PlatformViewState.resizing,
230 231
    ));
  }
232

233 234 235 236 237 238 239
  @override
  void describeSemanticsConfiguration (SemanticsConfiguration config) {
    super.describeSemanticsConfiguration(config);

    config.isSemanticBoundary = true;

    if (_viewController.isCreated) {
240
      config.platformViewId = _viewController.viewId;
241 242
    }
  }
243 244
}

245 246 247
/// A render object for an iOS UIKit UIView.
///
/// {@template flutter.rendering.platformView.preview}
248
/// Embedding UIViews is still preview-quality. To enable the preview for an iOS app add a boolean
249 250
/// field with the key 'io.flutter.embedded_views_preview' and the value set to 'YES' to the
/// application's Info.plist file. A list of open issued with embedding UIViews is available on
251
/// [Github](https://github.com/flutter/flutter/issues?q=is%3Aopen+is%3Aissue+label%3A%22a%3A+platform-views%22+label%3Aplatform-ios+sort%3Acreated-asc)
252
/// {@endtemplate}
253 254 255 256 257 258 259 260
///
/// [RenderUiKitView] is responsible for sizing and displaying an iOS
/// [UIView](https://developer.apple.com/documentation/uikit/uiview).
///
/// UIViews are added as sub views of the FlutterView and are composited by Quartz.
///
/// {@macro flutter.rendering.platformView.layout}
///
261 262
/// {@macro flutter.rendering.platformView.gestures}
///
263
/// See also:
264
///
265 266 267 268 269
///  * [UiKitView] which is a widget that is used to show a UIView.
///  * [PlatformViewsService] which is a service for controlling platform views.
class RenderUiKitView extends RenderBox {
  /// Creates a render object for an iOS UIView.
  ///
270
  /// The `viewId`, `hitTestBehavior`, and `gestureRecognizers` parameters must not be null.
271
  RenderUiKitView({
272 273 274
    required UiKitViewController viewController,
    required this.hitTestBehavior,
    required Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizers,
275
  }) : assert(viewController != null),
276
       assert(hitTestBehavior != null),
277 278 279 280
       assert(gestureRecognizers != null),
       _viewController = viewController {
    updateGestureRecognizers(gestureRecognizers);
  }
281 282 283 284 285 286


  /// The unique identifier of the UIView controlled by this controller.
  ///
  /// Typically generated by [PlatformViewsRegistry.getNextPlatformViewId], the UIView
  /// must have been created by calling [PlatformViewsService.initUiKitView].
287 288
  UiKitViewController get viewController => _viewController;
  UiKitViewController _viewController;
289 290
  set viewController(UiKitViewController viewController) {
    assert(viewController != null);
291
    final bool needsSemanticsUpdate = _viewController.id != viewController.id;
292
    _viewController = viewController;
293
    markNeedsPaint();
294 295 296
    if (needsSemanticsUpdate) {
      markNeedsSemanticsUpdate();
    }
297 298 299 300 301 302 303
  }

  /// How to behave during hit testing.
  // The implicit setter is enough here as changing this value will just affect
  // any newly arriving events there's nothing we need to invalidate.
  PlatformViewHitTestBehavior hitTestBehavior;

304 305 306 307 308 309 310 311 312 313 314 315 316 317
  /// {@macro flutter.rendering.platformView.updateGestureRecognizers}
  void updateGestureRecognizers(Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizers) {
    assert(gestureRecognizers != null);
    assert(
    _factoriesTypeSet(gestureRecognizers).length == gestureRecognizers.length,
    'There were multiple gesture recognizer factories for the same type, there must only be a single '
        'gesture recognizer factory for each gesture recognizer type.',);
    if (_factoryTypesSetEquals(gestureRecognizers, _gestureRecognizer?.gestureRecognizerFactories)) {
      return;
    }
    _gestureRecognizer?.dispose();
    _gestureRecognizer = _UiKitViewGestureRecognizer(viewController, gestureRecognizers);
  }

318 319 320 321 322 323 324 325 326
  @override
  bool get sizedByParent => true;

  @override
  bool get alwaysNeedsCompositing => true;

  @override
  bool get isRepaintBoundary => true;

327
  _UiKitViewGestureRecognizer? _gestureRecognizer;
328

329
  PointerEvent? _lastPointerDownEvent;
330

331 332 333 334 335 336 337 338 339
  @override
  void performResize() {
    size = constraints.biggest;
  }

  @override
  void paint(PaintingContext context, Offset offset) {
    context.addLayer(PlatformViewLayer(
      rect: offset & size,
340
      viewId: _viewController.id,
341 342 343 344
    ));
  }

  @override
345 346
  bool hitTest(BoxHitTestResult result, { Offset? position }) {
    if (hitTestBehavior == PlatformViewHitTestBehavior.transparent || !size.contains(position!))
347 348 349 350 351 352 353
      return false;
    result.add(BoxHitTestEntry(this, position));
    return hitTestBehavior == PlatformViewHitTestBehavior.opaque;
  }

  @override
  bool hitTestSelf(Offset position) => hitTestBehavior != PlatformViewHitTestBehavior.transparent;
354 355 356

  @override
  void handleEvent(PointerEvent event, HitTestEntry entry) {
357 358 359
    if (event is! PointerDownEvent) {
      return;
    }
360
    _gestureRecognizer!.addPointer(event);
361
    _lastPointerDownEvent = event.original ?? event;
362 363 364 365 366 367 368
  }

  // This is registered as a global PointerRoute while the render object is attached.
  void _handleGlobalPointerEvent(PointerEvent event) {
    if (event is! PointerDownEvent) {
      return;
    }
369
    if (!(Offset.zero & size).contains(globalToLocal(event.position))) {
370 371
      return;
    }
372
    if ((event.original ?? event) != _lastPointerDownEvent) {
373 374 375 376 377
      // The pointer event is in the bounds of this render box, but we didn't get it in handleEvent.
      // This means that the pointer event was absorbed by a different render object.
      // Since on the platform side the FlutterTouchIntercepting view is seeing all events that are
      // within its bounds we need to tell it to reject the current touch sequence.
      _viewController.rejectGesture();
378
    }
379 380 381
    _lastPointerDownEvent = null;
  }

382 383 384 385 386 387 388
  @override
  void describeSemanticsConfiguration (SemanticsConfiguration config) {
    super.describeSemanticsConfiguration(config);
    config.isSemanticBoundary = true;
    config.platformViewId = _viewController.id;
  }

389 390 391
  @override
  void attach(PipelineOwner owner) {
    super.attach(owner);
392
    GestureBinding.instance!.pointerRouter.addGlobalRoute(_handleGlobalPointerEvent);
393 394 395 396
  }

  @override
  void detach() {
397 398
    GestureBinding.instance!.pointerRouter.removeGlobalRoute(_handleGlobalPointerEvent);
    _gestureRecognizer!.reset();
399 400 401 402 403 404 405 406 407 408
    super.detach();
  }
}

// This recognizer constructs gesture recognizers from a set of gesture recognizer factories
// it was give, adds all of them to a gesture arena team with the _UiKitViewGesturrRecognizer
// as the team captain.
// When the team wins a gesture the recognizer notifies the engine that it should release
// the touch sequence to the embedded UIView.
class _UiKitViewGestureRecognizer extends OneSequenceGestureRecognizer {
409 410 411
  _UiKitViewGestureRecognizer(
    this.controller,
    this.gestureRecognizerFactories, {
412
    PointerDeviceKind? kind,
413
  }) : super(kind: kind) {
414 415
    team = GestureArenaTeam()
      ..captain = this;
416 417
    _gestureRecognizers = gestureRecognizerFactories.map(
      (Factory<OneSequenceGestureRecognizer> recognizerFactory) {
418 419 420 421 422 423 424 425 426 427 428 429 430
        final OneSequenceGestureRecognizer gestureRecognizer = recognizerFactory.constructor();
        gestureRecognizer.team = team;
        // The below gesture recognizers requires at least one non-empty callback to
        // compete in the gesture arena.
        // https://github.com/flutter/flutter/issues/35394#issuecomment-562285087
        if (gestureRecognizer is LongPressGestureRecognizer) {
          gestureRecognizer.onLongPress ??= (){};
        } else if (gestureRecognizer is DragGestureRecognizer) {
          gestureRecognizer.onDown ??= (_){};
        } else if (gestureRecognizer is TapGestureRecognizer) {
          gestureRecognizer.onTapDown ??= (_){};
        }
        return gestureRecognizer;
431 432 433 434 435 436 437 438 439
      },
    ).toSet();
  }


  // We use OneSequenceGestureRecognizers as they support gesture arena teams.
  // TODO(amirh): get a list of GestureRecognizers here.
  // https://github.com/flutter/flutter/issues/20953
  final Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizerFactories;
440
  late Set<OneSequenceGestureRecognizer> _gestureRecognizers;
441 442 443 444

  final UiKitViewController controller;

  @override
445
  void addAllowedPointer(PointerDownEvent event) {
446
    startTrackingPointer(event.pointer, event.transform);
447
    for (final OneSequenceGestureRecognizer recognizer in _gestureRecognizers) {
448 449 450 451 452 453 454 455
      recognizer.addPointer(event);
    }
  }

  @override
  String get debugDescription => 'UIKit view';

  @override
456
  void didStopTrackingLastPointer(int pointer) { }
457 458 459 460 461 462 463 464 465 466 467 468 469

  @override
  void handleEvent(PointerEvent event) {
    stopTrackingIfPointerNoLongerDown(event);
  }

  @override
  void acceptGesture(int pointer) {
    controller.acceptGesture();
  }

  @override
  void rejectGesture(int pointer) {
470
    controller.rejectGesture();
471 472 473 474 475
  }

  void reset() {
    resolve(GestureDisposition.rejected);
  }
476 477
}

478
typedef _HandlePointerEvent = Future<void> Function(PointerEvent event);
479

480
// This recognizer constructs gesture recognizers from a set of gesture recognizer factories
481
// it was give, adds all of them to a gesture arena team with the _PlatformViewGestureRecognizer
482
// as the team captain.
483 484 485 486 487 488
// As long as the gesture arena is unresolved, the recognizer caches all pointer events.
// When the team wins, the recognizer sends all the cached pointer events to `_handlePointerEvent`, and
// sets itself to a "forwarding mode" where it will forward any new pointer event to `_handlePointerEvent`.
class _PlatformViewGestureRecognizer extends OneSequenceGestureRecognizer {
  _PlatformViewGestureRecognizer(
    _HandlePointerEvent handlePointerEvent,
489
    this.gestureRecognizerFactories, {
490
    PointerDeviceKind? kind,
491
  }) : super(kind: kind) {
492 493
    team = GestureArenaTeam()
      ..captain = this;
494
    _gestureRecognizers = gestureRecognizerFactories.map(
495
      (Factory<OneSequenceGestureRecognizer> recognizerFactory) {
496 497 498 499 500 501 502 503 504 505 506 507 508
        final OneSequenceGestureRecognizer gestureRecognizer = recognizerFactory.constructor();
        gestureRecognizer.team = team;
        // The below gesture recognizers requires at least one non-empty callback to
        // compete in the gesture arena.
        // https://github.com/flutter/flutter/issues/35394#issuecomment-562285087
        if (gestureRecognizer is LongPressGestureRecognizer) {
          gestureRecognizer.onLongPress ??= (){};
        } else if (gestureRecognizer is DragGestureRecognizer) {
          gestureRecognizer.onDown ??= (_){};
        } else if (gestureRecognizer is TapGestureRecognizer) {
          gestureRecognizer.onTapDown ??= (_){};
        }
        return gestureRecognizer;
509
      },
510
    ).toSet();
511
    _handlePointerEvent = handlePointerEvent;
512 513
  }

514
  late _HandlePointerEvent _handlePointerEvent;
515 516 517

  // Maps a pointer to a list of its cached pointer events.
  // Before the arena for a pointer is resolved all events are cached here, if we win the arena
518
  // the cached events are dispatched to `_handlePointerEvent`, if we lose the arena we clear the cache for
519
  // the pointer.
520
  final Map<int, List<PointerEvent>> cachedEvents = <int, List<PointerEvent>>{};
521 522

  // Pointer for which we have already won the arena, events for pointers in this set are
523
  // immediately dispatched to `_handlePointerEvent`.
524
  final Set<int> forwardedPointers = <int>{};
525 526 527 528

  // We use OneSequenceGestureRecognizers as they support gesture arena teams.
  // TODO(amirh): get a list of GestureRecognizers here.
  // https://github.com/flutter/flutter/issues/20953
529
  final Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizerFactories;
530
  late Set<OneSequenceGestureRecognizer> _gestureRecognizers;
531 532

  @override
533
  void addAllowedPointer(PointerDownEvent event) {
534
    startTrackingPointer(event.pointer, event.transform);
535
    for (final OneSequenceGestureRecognizer recognizer in _gestureRecognizers) {
536 537 538 539 540
      recognizer.addPointer(event);
    }
  }

  @override
541
  String get debugDescription => 'Platform view';
542 543

  @override
544
  void didStopTrackingLastPointer(int pointer) { }
545 546 547 548

  @override
  void handleEvent(PointerEvent event) {
    if (!forwardedPointers.contains(event.pointer)) {
549
      _cacheEvent(event);
550
    } else {
551
      _handlePointerEvent(event);
552 553 554 555 556 557
    }
    stopTrackingIfPointerNoLongerDown(event);
  }

  @override
  void acceptGesture(int pointer) {
558
    _flushPointerCache(pointer);
559 560 561 562 563 564 565 566 567
    forwardedPointers.add(pointer);
  }

  @override
  void rejectGesture(int pointer) {
    stopTrackingPointer(pointer);
    cachedEvents.remove(pointer);
  }

568
  void _cacheEvent(PointerEvent event) {
569 570 571
    if (!cachedEvents.containsKey(event.pointer)) {
      cachedEvents[event.pointer] = <PointerEvent> [];
    }
572
    cachedEvents[event.pointer]!.add(event);
573 574
  }

575 576
  void _flushPointerCache(int pointer) {
    cachedEvents.remove(pointer)?.forEach(_handlePointerEvent);
577 578 579 580 581 582 583 584 585 586 587 588 589 590
  }

  @override
  void stopTrackingPointer(int pointer) {
    super.stopTrackingPointer(pointer);
    forwardedPointers.remove(pointer);
  }

  void reset() {
    forwardedPointers.forEach(super.stopTrackingPointer);
    forwardedPointers.clear();
    cachedEvents.keys.forEach(super.stopTrackingPointer);
    cachedEvents.clear();
    resolve(GestureDisposition.rejected);
591 592 593
  }
}

594 595
/// A render object for embedding a platform view.
///
596 597 598
/// [PlatformViewRenderBox] presents a platform view by adding a [PlatformViewLayer] layer,
/// integrates it with the gesture arenas system and adds relevant semantic nodes to the semantics tree.
class PlatformViewRenderBox extends RenderBox with _PlatformViewGestureMixin {
599 600 601 602 603

  /// Creating a render object for a [PlatformViewSurface].
  ///
  /// The `controller` parameter must not be null.
  PlatformViewRenderBox({
604 605 606
    required PlatformViewController controller,
    required PlatformViewHitTestBehavior hitTestBehavior,
    required Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizers,
607 608 609 610
  }) :  assert(controller != null && controller.viewId != null && controller.viewId > -1),
        assert(hitTestBehavior != null),
        assert(gestureRecognizers != null),
        _controller = controller {
611 612 613
    this.hitTestBehavior = hitTestBehavior;
    updateGestureRecognizers(gestureRecognizers);
  }
614 615 616 617 618 619 620 621 622 623 624 625

  /// Sets the [controller] for this render object.
  ///
  /// This value must not be null, and setting it to a new value will result in a repaint.
  set controller(PlatformViewController controller) {
    assert(controller != null);
    assert(controller.viewId != null && controller.viewId > -1);

    if ( _controller == controller) {
      return;
    }
    final bool needsSemanticsUpdate = _controller.viewId != controller.viewId;
626 627
    _controller = controller;
    markNeedsPaint();
628 629 630 631 632
    if (needsSemanticsUpdate) {
      markNeedsSemanticsUpdate();
    }
  }

633 634 635 636
  /// {@macro  flutter.rendering.platformView.updateGestureRecognizers}
  ///
  /// Any active gesture arena the `PlatformView` participates in is rejected when the
  /// set of gesture recognizers is changed.
637 638
  void updateGestureRecognizers(Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizers) {
    _updateGestureRecognizersWithCallBack(gestureRecognizers, _controller.dispatchPointerEvent);
639 640
  }

641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
  PlatformViewController _controller;

  @override
  bool get sizedByParent => true;

  @override
  bool get alwaysNeedsCompositing => true;

  @override
  bool get isRepaintBoundary => true;

  @override
  void performResize() {
    size = constraints.biggest;
  }

  @override
  void paint(PaintingContext context, Offset offset) {
    assert(_controller.viewId != null);
    context.addLayer(PlatformViewLayer(
661 662 663
      rect: offset & size,
      viewId: _controller.viewId,
    ));
664 665 666 667 668 669 670 671 672 673
  }

  @override
  void describeSemanticsConfiguration (SemanticsConfiguration config) {
    super.describeSemanticsConfiguration(config);
    assert(_controller.viewId != null);
    config.isSemanticBoundary = true;
    config.platformViewId = _controller.viewId;
  }
}
674 675

/// The Mixin handling the pointer events and gestures of a platform view render box.
676
mixin _PlatformViewGestureMixin on RenderBox implements MouseTrackerAnnotation {
677 678

  /// How to behave during hit testing.
679 680 681 682 683
  // Changing _hitTestBehavior might affect which objects are considered hovered over.
  set hitTestBehavior(PlatformViewHitTestBehavior value) {
    if (value != _hitTestBehavior) {
      _hitTestBehavior = value;
      if (owner != null)
684
        markNeedsPaint();
685 686
    }
  }
687
  PlatformViewHitTestBehavior? _hitTestBehavior;
688

689
  _HandlePointerEvent? _handlePointerEvent;
690

691 692 693 694
  /// {@macro  flutter.rendering.platformView.updateGestureRecognizers}
  ///
  /// Any active gesture arena the `PlatformView` participates in is rejected when the
  /// set of gesture recognizers is changed.
695
  void _updateGestureRecognizersWithCallBack(Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizers, _HandlePointerEvent handlePointerEvent) {
696 697 698 699 700 701 702 703 704
    assert(gestureRecognizers != null);
    assert(
    _factoriesTypeSet(gestureRecognizers).length == gestureRecognizers.length,
    'There were multiple gesture recognizer factories for the same type, there must only be a single '
        'gesture recognizer factory for each gesture recognizer type.',);
    if (_factoryTypesSetEquals(gestureRecognizers, _gestureRecognizer?.gestureRecognizerFactories)) {
      return;
    }
    _gestureRecognizer?.dispose();
705
    _gestureRecognizer = _PlatformViewGestureRecognizer(handlePointerEvent, gestureRecognizers);
706
    _handlePointerEvent = handlePointerEvent;
707 708
  }

709
  _PlatformViewGestureRecognizer? _gestureRecognizer;
710 711

  @override
712
  bool hitTest(BoxHitTestResult result, { required Offset position }) {
713
    if (_hitTestBehavior == PlatformViewHitTestBehavior.transparent || !size.contains(position)) {
714 715 716
      return false;
    }
    result.add(BoxHitTestEntry(this, position));
717
    return _hitTestBehavior == PlatformViewHitTestBehavior.opaque;
718 719 720
  }

  @override
721
  bool hitTestSelf(Offset position) => _hitTestBehavior != PlatformViewHitTestBehavior.transparent;
722

723
  @override
724
  PointerEnterEventListener? get onEnter => null;
725 726 727 728 729

  @override
  PointerHoverEventListener get onHover => _handleHover;
  void _handleHover(PointerHoverEvent event) {
    if (_handlePointerEvent != null)
730
      _handlePointerEvent!(event);
731 732 733
  }

  @override
734
  PointerExitEventListener? get onExit => null;
735 736 737 738

  @override
  MouseCursor get cursor => MouseCursor.uncontrolled;

739 740 741
  @override
  void handleEvent(PointerEvent event, HitTestEntry entry) {
    if (event is PointerDownEvent) {
742
      _gestureRecognizer!.addPointer(event);
743 744 745 746 747
    }
  }

  @override
  void detach() {
748
    _gestureRecognizer!.reset();
749 750 751
    super.detach();
  }
}