WPopup
WPopup copied to clipboard
一个简单使用并且高度定制的Popupwindow。超简单实现朋友圈点赞效果,并且只用一个WPopup!完全不用担心复用问题!点击切换动画效果等!
欢迎提交意见
有各种改进方案可以在这里提出来
应当给GestureDetector设置behavior: HitTestBehavior.opaque属性 ``` @override Widget build(BuildContext context) { return WillPopScope( onWillPop: (){ if(entry != null){ removeOverlay(); } return Future.value(true); }, child: GestureDetector( child: widget.child, behavior: HitTestBehavior.opaque, onTap: () { if...
WidgetsBinding.instance.addPostFrameCallback((call) { width = context.size.width; height = context.size.height; button = context.findRenderObject(); overlay = Overlay.of(context).context.findRenderObject(); }); ═══════ Exception caught by scheduler library ═════════════════════════════════ The getter 'size' was called on null. Receiver:...
我想实现箭头在window的左下角,而不是下方居中