mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
24 lines
683 B
C#
24 lines
683 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Utilities
|
|
{
|
|
public class IsNullConverter : IValueConverter
|
|
{
|
|
public object Convert(object value, Type targetType, object parameter,
|
|
System.Globalization.CultureInfo culture)
|
|
{
|
|
if(targetType == typeof(bool))
|
|
{
|
|
return value == null;
|
|
}
|
|
throw new InvalidOperationException("The target must be a boolean.");
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter,
|
|
System.Globalization.CultureInfo culture)
|
|
{
|
|
throw new NotSupportedException();
|
|
}
|
|
}
|
|
}
|