mirror of
https://github.com/bitwarden/android.git
synced 2025-01-04 23:37:37 +03:00
24 lines
711 B
C#
24 lines
711 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Utilities
|
|
{
|
|
public class InverseBoolConverter : IValueConverter
|
|
{
|
|
public object Convert(object value, Type targetType, object parameter,
|
|
System.Globalization.CultureInfo culture)
|
|
{
|
|
if (targetType == typeof(bool))
|
|
{
|
|
return !((bool?)value).GetValueOrDefault();
|
|
}
|
|
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();
|
|
}
|
|
}
|
|
}
|