left-scroll-actions
left-scroll-actions copied to clipboard
Flutter的左滑删除组件
════════ Exception caught by foundation library ════════════════════════════════════════════════════ The following assertion was thrown while dispatching notifications for LeftScrollStatus: AnimationController.animateTo() called after AnimationController.dispose() AnimationController methods should not be used after calling dispose....
我们的项目会在极端的情况下,同时触发页面pop和cell滑动关闭(CupertinoLeftScrollState.close) 这种情况下,animationController会提早释放,导致animationController.animateTo(0)执行报错。 NoSuchMethodError: The method 'stop' was called on null.