20 lines
402 B
C#
20 lines
402 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
namespace MobileApp1.Views
|
|
{
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
public partial class MyFoldersPage : TabbedPage
|
|
{
|
|
public MyFoldersPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |