Browse Source

Upgraded to Flutter 1.9.0

dmytro-glynskyi 5 years ago
parent
commit
08a7347a4d
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      packages/zefyr/lib/src/widgets/selection.dart

+ 1
- 1
packages/zefyr/lib/src/widgets/selection.dart View File

422
     // Make sure the GestureDetector is big enough to be easily interactive.
422
     // Make sure the GestureDetector is big enough to be easily interactive.
423
     final Rect interactiveRect = handleRect.expandToInclude(
423
     final Rect interactiveRect = handleRect.expandToInclude(
424
       Rect.fromCircle(
424
       Rect.fromCircle(
425
-          center: handleRect.center, radius: kMinInteractiveSize / 2),
425
+          center: handleRect.center, radius: kMinInteractiveDimension / 2),
426
     );
426
     );
427
     final RelativeRect padding = RelativeRect.fromLTRB(
427
     final RelativeRect padding = RelativeRect.fromLTRB(
428
       math.max((interactiveRect.width - handleRect.width) / 2, 0),
428
       math.max((interactiveRect.width - handleRect.width) / 2, 0),