[infra_ui][overlar] Implement overlay insertion interface

This commit is contained in:
Jaylen Bian 2021-08-01 18:03:24 +08:00
parent a6a350a831
commit 58e4a4d5f1
3 changed files with 29 additions and 26 deletions

View File

@ -55,20 +55,22 @@ class OverlayScreen extends StatelessWidget {
child: const Text('Show Overlay'),
),
const SizedBox(height: 12.0),
ElevatedButton(
onPressed: () {
FlowyOverlay.of(context).insertWithAnchor(
widget: const FlutterLogo(
size: 200,
textColor: Colors.orange,
),
identifier: 'overlay_flutter_logo',
delegate: null,
anchorContext: context,
);
},
child: const Text('Show Anchored Overlay'),
),
Builder(builder: (buttonContext) {
return ElevatedButton(
onPressed: () {
FlowyOverlay.of(context).insertWithAnchor(
widget: const FlutterLogo(
size: 200,
textColor: Colors.orange,
),
identifier: 'overlay_flutter_logo',
delegate: null,
anchorContext: buttonContext,
);
},
child: const Text('Show Anchored Overlay'),
);
}),
const SizedBox(height: 12.0),
ElevatedButton(
onPressed: () {

View File

@ -201,17 +201,24 @@ class FlowyOverlayState extends State<FlowyOverlay> {
anchorPosition != null || anchorContext != null,
'Must provide `anchorPosition` or `anchorContext` to locating overlay.',
);
var targetAnchorPosition = anchorPosition;
Offset targetAnchorPosition = anchorPosition ?? Offset.zero;
Size targetAnchorSize = anchorSize ?? Size.zero;
if (anchorContext != null) {
RenderObject renderObject = anchorContext.findRenderObject()!;
assert(
renderObject is RenderBox,
'Unexpect non-RenderBox render object caught.',
);
final localOffset = (renderObject as RenderBox).localToGlobal(Offset.zero);
targetAnchorPosition ??= localOffset;
final renderBox = renderObject as RenderBox;
targetAnchorPosition = renderBox.localToGlobal(Offset.zero);
targetAnchorSize = renderBox.size;
}
final anchorRect = targetAnchorPosition! & (anchorSize ?? Size.zero);
final anchorRect = Rect.fromLTWH(
targetAnchorPosition.dx,
targetAnchorPosition.dy,
targetAnchorSize.width,
targetAnchorSize.height,
);
overlay = CustomSingleChildLayout(
delegate: OverlayLayoutDelegate(
anchorRect: anchorRect,

View File

@ -19,20 +19,14 @@ class OverlayLayoutDelegate extends SingleChildLayoutDelegate {
return anchorRect != oldDelegate.anchorRect || anchorDirection != oldDelegate.anchorDirection;
}
@override
Size getSize(BoxConstraints constraints) {
return super.getSize(constraints);
}
@override
BoxConstraints getConstraintsForChild(BoxConstraints constraints) {
// TODO: junlin - calculate child constaints
return super.getConstraintsForChild(constraints);
return constraints.loosen();
}
@override
Offset getPositionForChild(Size size, Size childSize) {
// TODO: junlin - calculate child position
return Offset(size.width / 2, size.height / 2);
return Offset(anchorRect.width / 2, anchorRect.height / 2);
}
}