sharee.bike-App/Meinkonrad/TINK/View/RootShell/AppShell.xaml.cs
2021-11-07 19:42:59 +01:00

16 lines
281 B
C#

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