14 lines
218 B
C#
14 lines
218 B
C#
|
|
// AboutPage - Information about OpenMaui Linux
|
||
|
|
|
||
|
|
using Microsoft.Maui.Controls;
|
||
|
|
|
||
|
|
namespace ShellDemo;
|
||
|
|
|
||
|
|
public partial class AboutPage : ContentPage
|
||
|
|
{
|
||
|
|
public AboutPage()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|