7 lines
210 B
Dart
7 lines
210 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
|
|
Rect? sharePositionOrigin(BuildContext context) {
|
|
final RenderBox box = context.findRenderObject() as RenderBox;
|
|
return box.localToGlobal(Offset.zero) & box.size;
|
|
} |