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

16 lines
236 B
C#
Raw Normal View History

2021-11-07 19:42:59 +01:00

using TINK.ViewModel.RootShell;
using Xamarin.Forms;
namespace TINK.View.RootShell
{
2022-09-06 16:08:19 +02:00
public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
BindingContext = new AppShellViewModel();
}
}
2021-11-07 19:42:59 +01:00
}