Navigation menu is now a reusable component
This commit is contained in:
5
Aurora/Frontend/Views/Artists/ArtistsView.xaml
Normal file
5
Aurora/Frontend/Views/Artists/ArtistsView.xaml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="Aurora.Frontend.Views.Artists.ArtistsView">
|
||||
<ContentPage.Content>
|
||||
</ContentPage.Content>
|
||||
</ContentPage>
|
15
Aurora/Frontend/Views/Artists/ArtistsView.xaml.cs
Normal file
15
Aurora/Frontend/Views/Artists/ArtistsView.xaml.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace Aurora.Frontend.Views.Artists
|
||||
{
|
||||
public partial class ArtistsView : ContentPage
|
||||
{
|
||||
public ArtistsView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
10
Aurora/Frontend/Views/Artists/ArtistsViewModel.cs
Normal file
10
Aurora/Frontend/Views/Artists/ArtistsViewModel.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using System;
|
||||
namespace Aurora.Frontend.Views.Artists
|
||||
{
|
||||
public class ArtistsViewModel
|
||||
{
|
||||
public ArtistsViewModel()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user