Contact List | Group List | Friend Request List |
![]() | ![]() | ![]() |
ContactList component is included in TUIKit Flutter. To use ContactList, integrate TUIKit Flutter into your application. For detailed integration steps, refer to the TUIKit Flutter documentation.ContactList serves as the main entry point for the contact list page. The following table describes the available webhook parameters for customizing click events:Method | Parameter | Description |
ContactList | onGroupClick: (ContactInfo contactInfo) {} | Webhook triggered when a group is clicked. Optional. |
| onContactClick: (ContactInfo contactInfo) {} | Webhook triggered when a contact is clicked. Optional. |
ContactList displays navigation cells for subviews such as friend requests, group chat requests, group chat list, and blacklist. The lower section contains the contact list itself, as shown below:
ContactList, navigation to the appropriate subview is handled automatically—no additional configuration is required.onGroupClick or onContactClick) is triggered. Listen to these webhooks to implement custom navigation or behaviors.
ContactList as shown below:ContactList(onGroupClick: (ContactInfo contactInfo) {// Handle group click event},onContactClick: (ContactInfo contactInfo) {// Handle contact click event},),
피드백