exyte / Chat

A SwiftUI Chat UI framework with fully customizable message cells and a built-in media picker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Why using UITableView instead of List

paul-lavoine opened this issue · comments

Hello,

I was looking at your library and I noticed you were using a UITableView in a UIList.swift instead of the List component.

Why did you do that ? What was the limitation ?

Thanks :)

Hey @paul-lavoine, it's the silliest thing really: List doesn't allow to customise cell insertion animation, and I need cells to slide from the bottom. And cells for which only status has changed should not be animated at all.

Hmm ok it's a good reason haha ! :) Thanks for the quick answer !