15 lines
268 B
C#
15 lines
268 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
namespace MyMobileApp.Views
|
|
{
|
|
public partial class AboutPage : ContentPage
|
|
{
|
|
public AboutPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |