clearFindAnchorDate method

void clearFindAnchorDate()

滚动完成后清除定位锚点,防止 build 循环触发滚动

Implementation

void clearFindAnchorDate() {
  if (findAnchorDate != null) {
    findAnchorDate = null;
    notifyListeners();
  }
}