This repository has been archived on 2020-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
aurora-sharp-desktop/Aurora/Design/Views/Profile/ProfileView.xaml.cs

16 lines
315 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using Xamarin.Forms;
2019-07-05 18:17:09 +00:00
namespace Aurora.Design.Views.Profile
{
public partial class ProfileView : ContentView
{
public ProfileView()
{
InitializeComponent();
BindingContext = new ProfileViewModel();
}
}
}