sharee.bike-App/LastenradBayern/ShareeBike/View/RootShell/AppShell.xaml.cs

16 lines
248 B
C#
Raw Normal View History

2021-05-13 20:16:41 +02:00

2024-04-09 12:53:23 +02:00
using ShareeBike.ViewModel.RootShell;
2021-05-13 20:16:41 +02:00
using Xamarin.Forms;
2024-04-09 12:53:23 +02:00
namespace ShareeBike.View.RootShell
2021-05-13 20:16:41 +02:00
{
2022-09-06 16:08:19 +02:00
public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
BindingContext = new AppShellViewModel();
}
}
2021-05-13 20:16:41 +02:00
}