Hello,
before maui I did it with Renderer in xamarin forms .
If it works with renderer in Xamarin.Forms, you could try reuse custom renderers in .NET MAUI, take care to register renderers in the MauiProgram
class. For example:
.ConfigureMauiHandlers((handlers) =>
{
#if ANDROID
handlers.AddHandler(typeof(CollectionView), typeof(your RecycleView ));
#endif
});
If you have any other issues, please feel free to post in here.
Best Regards,
Wenyan Zhang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.