Remove unused statement.

This commit is contained in:
stonega 2021-01-02 22:48:37 +08:00
parent 774f39da1b
commit a09718ca91
1 changed files with 0 additions and 15 deletions

View File

@ -300,21 +300,6 @@ class _MultiSelectMenuBarState extends State<MultiSelectMenuBar> {
);
},
));
OverlayEntry _createOverlayEntry() {
RenderBox renderBox = context.findRenderObject();
var offset = renderBox.localToGlobal(Offset.zero);
return OverlayEntry(
builder: (constext) => Positioned(
left: offset.dx + 50,
top: offset.dy - 60,
child: Container(
width: 70,
height: 100,
//color: Colors.grey[200],
child: HeartOpen(width: 50, height: 80)),
),
);
}
@override
Widget build(BuildContext context) {