Custom Skeleton Loader Support for Infinite Scroll in GroupChannelList

[Problem/Question]
// Detailed description of issue.
I am developing a chat webview using the Sendbird UIKit in a React environment. This webview is embedded within a mobile app.

In the group channel list, infinite scroll is enabled. I want to display a custom skeleton loader that I designed while loading the next list of channels. However, it seems that the UIKit does not provide props or functionality to show a custom component during the loading of the next list.

Is there a way to achieve this functionality, or would you consider adding support for such a feature?


// If problem, please fill out the below. If question, please delete.
[UIKit Version]
// What version of the SDK are you using?
3.15.5

[Reproduction Steps]
// Please provide reproduction steps and, if possible, code snippets.
<GroupChannelList
onChannelSelect={() => {}}
onChannelCreated={() => {}}
renderChannelPreview={({ channel }) => (

)}
renderPlaceHolderLoading={() => <></>}
renderPlaceHolderEmptyList={() => }
/>

[Frequency]
// How frequently is this issue occurring?
Occurs every time the next list of channels is loaded.

[Current impact]
// How is this currently impacting your implementation?
Users cannot tell if the next list of group channels is being loaded.