Some checks failed
Gitea/WheresMyMoney/pipeline/head There was a failure building this commit
- Modify planned payment - minor bug fixes
16 lines
520 B
C#
16 lines
520 B
C#
namespace WheresMyMoney.Maui;
|
|
|
|
public partial class AppShell : Shell
|
|
{
|
|
public AppShell()
|
|
{
|
|
InitializeComponent();
|
|
#if ANDROID || IOS
|
|
PlannedPaymentsShellContent.ContentTemplate = new DataTemplate(typeof(MobilePlannedPaymentsPage));
|
|
PlannedPaymentsShellContent.Route = "MobilePlannedPaymentsPage";
|
|
#else
|
|
PlannedPaymentsShellContent.ContentTemplate = new DataTemplate(typeof(PlannedPaymentsPage));
|
|
PlannedPaymentsShellContent.Route = "PlannedPaymentsPage";
|
|
#endif
|
|
}
|
|
} |