sharee.bike-App/LastenradBayern/ShareeBike/View/RootShell/AppShell.xaml.cs
2024-04-09 12:53:23 +02:00

16 lines
248 B
C#

using ShareeBike.ViewModel.RootShell;
using Xamarin.Forms;
namespace ShareeBike.View.RootShell
{
public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
BindingContext = new AppShellViewModel();
}
}
}