Refactored to only having one executor per platform
This commit is contained in:
6
Aurora/Frontend/Views/Profile/ProfileView.xaml
Normal file
6
Aurora/Frontend/Views/Profile/ProfileView.xaml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ContentView xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="Aurora.Frontend.Views.Profile.ProfileView">
|
||||
<ContentView.Content>
|
||||
<Label Text="This is a profile"/>
|
||||
</ContentView.Content>
|
||||
</ContentView>
|
15
Aurora/Frontend/Views/Profile/ProfileView.xaml.cs
Normal file
15
Aurora/Frontend/Views/Profile/ProfileView.xaml.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace Aurora.Frontend.Views.Profile
|
||||
{
|
||||
public partial class ProfileView : ContentView
|
||||
{
|
||||
public ProfileView()
|
||||
{
|
||||
InitializeComponent();
|
||||
BindingContext = new ProfileViewModel();
|
||||
}
|
||||
}
|
||||
}
|
10
Aurora/Frontend/Views/Profile/ProfileViewModel.cs
Normal file
10
Aurora/Frontend/Views/Profile/ProfileViewModel.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using System;
|
||||
namespace Aurora.Frontend.Views.Profile
|
||||
{
|
||||
public class ProfileViewModel
|
||||
{
|
||||
public ProfileViewModel()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user