mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
20 lines
No EOL
367 B
C#
20 lines
No EOL
367 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 TINK.View.RootShell
|
|
{
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
public partial class FlyoutHeader : ContentView
|
|
{
|
|
public FlyoutHeader ()
|
|
{
|
|
InitializeComponent ();
|
|
}
|
|
}
|
|
} |