mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
36 lines
789 B
C#
36 lines
789 B
C#
|
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
|
|||
|
using TINK.View.MasterDetail;
|
|||
|
#endif
|
|||
|
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;
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|