mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
13 lines
197 B
C#
13 lines
197 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Borepin.PageModel
|
|
{
|
|
public class MyTabbedPage : TabbedPage
|
|
{
|
|
public MyTabbedPage()
|
|
{
|
|
Title = "Tabbed Page";
|
|
}
|
|
}
|
|
}
|