chore: replace SliverList with SliverAnimatedList

This commit is contained in:
appflowy
2022-04-11 20:52:15 +08:00
parent 6af78641d2
commit 31b2ace48f
7 changed files with 154 additions and 101 deletions

View File

@ -163,10 +163,10 @@ impl GridBlockMetaPad {
None => Ok(None),
Some(delta) => {
tracing::debug!("[GridBlockMeta] Composing delta {}", delta.to_delta_str());
tracing::debug!(
"[GridBlockMeta] current delta: {}",
self.delta.to_str().unwrap_or_else(|_| "".to_string())
);
// tracing::debug!(
// "[GridBlockMeta] current delta: {}",
// self.delta.to_str().unwrap_or_else(|_| "".to_string())
// );
self.delta = self.delta.compose(&delta)?;
Ok(Some(GridBlockMetaChange { delta, md5: self.md5() }))
}