using UIWidgets; namespace UIWidgetsSamples { /// /// ChatView. /// public class ChatView : ListViewCustomHeight { /// /// Sets component data with specified item. /// /// Component. /// Item. protected override void SetData(ChatLineComponent component, ChatLine item) { component.SetData(item); } // leave coloring functions empty protected override void HighlightColoring(ChatLineComponent component) { } protected override void SelectColoring(ChatLineComponent component) { } protected override void DefaultColoring(ChatLineComponent component) { } } }