I have the same issue as this thread
When I load my app on Windows Machine
, NO ISSUE. However on Android I have an Exception pointing on the constructor of my TabbedPage
public partial class AppTabbedPage
{
public AppTabbedPage()
{
InitializeComponent();
}
}
If anyone know how to make works TabbedPage on Android?
Update: I found a solution to my issue. It was a file that won't load when booting on Android. After a few investigations I found out how to load custom files with .NET Maui on this Thread which led me to this page of the Docs.
Thank You!