bitwarden-android/src/App/Pages/TabsPage.xaml.cs

19 lines
335 B
C#
Raw Normal View History

2019-03-28 03:12:44 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
2019-03-29 00:10:10 +03:00
using Xamarin.Forms.Xaml;
2019-03-28 03:12:44 +03:00
2019-03-29 00:10:10 +03:00
namespace Bit.App.Pages
2019-03-28 03:12:44 +03:00
{
2019-03-29 06:52:33 +03:00
public partial class TabsPage : TabbedPage
2019-03-28 03:12:44 +03:00
{
2019-03-29 06:52:33 +03:00
public TabsPage()
2019-03-28 03:12:44 +03:00
{
InitializeComponent();
}
}
}