2021-08-02 21:49:48 +00:00
|
|
|
|
using System;
|
2022-09-30 17:06:31 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2021-08-02 21:49:48 +00:00
|
|
|
|
using Xamarin.Forms;
|
2022-09-30 17:06:31 +00:00
|
|
|
|
using Xamarin.Forms.Xaml;
|
2021-08-02 21:49:48 +00:00
|
|
|
|
|
|
|
|
|
namespace MobileApp1.Views
|
|
|
|
|
{
|
2022-09-30 17:06:31 +00:00
|
|
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
|
|
|
public partial class MyFoldersPage : TabbedPage
|
2021-08-02 21:49:48 +00:00
|
|
|
|
{
|
2021-08-06 13:15:24 +00:00
|
|
|
|
public MyFoldersPage()
|
2021-08-02 21:49:48 +00:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|