Added tab view (not working)

This commit is contained in:
watsonb8
2019-12-21 22:21:07 -05:00
parent 881d339ffd
commit 7560e122f8
10 changed files with 849 additions and 27 deletions

View File

@ -0,0 +1,19 @@
using System;
using System.Globalization;
using Xamarin.Forms;
namespace Aurora.Design.Converters
{
public class NullToBoolConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return value != null;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return null;
}
}
}