mirror of
https://github.com/bitwarden/android.git
synced 2025-01-07 00:37:38 +03:00
24 lines
710 B
C#
24 lines
710 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();
|
|
}
|
|
}
|
|
}
|