sharee.bike-App/TINK/TINK/View/RootFlyout/RootPageFlyout.xaml.cs

36 lines
789 B
C#
Raw Normal View History

2021-05-13 20:16:41 +02:00
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
using TINK.Model;
using TINK.Services;
#if USEFLYOUT
2021-05-13 20:16:41 +02:00
using TINK.View.MasterDetail;
2021-06-26 20:57:55 +02:00
#endif
2021-05-13 20:16:41 +02:00
using TINK.View.Themes;
using TINK.ViewModel.Root;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace TINK.View.Root
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class RootPageFlyout : ContentPage
{
public ListView ListView;
public RootPageFlyout()
{
InitializeComponent();
BindingContext = new RootPageFlyoutViewModel();
ListView = MenuItemsListView;
}
}
}