Hello,
I could extend the TabbedPageRenderer but not sure how to do it in Maui.
You can use the following two ways to implement the feature.
Method 1: It is more recommened to use Handler
rather than Renderer
on MAUI.
You could use ITabbedViewHandler
to customize your TabbedPage on each platform, please refer to the following documentations:
Method 2: You could continue using TabbedPageRenderer
on MAUI, please refer to Using Custom Renderers in .NET MAUI.
Update: For your case, after in-depth investigation, for your scenario, if you use Handler
, you need to create a view of the corresponding platform to adapt. Please refer to Create a custom control using handlers to get more details.
As you could see, the steps will be cumbersome. Therefore, using Renderer to change font will be better choice for your scenario.
Best Regards,
Alec Liu.
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.