1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-30 04:17:55 +02:00
bitwarden-mobile/src/Core/Utilities/SendIconGlyphConverter.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.0 KiB
C#
Raw Normal View History

using System;
using System.Globalization;
2022-01-21 10:31:03 +01:00
using Bit.Core;
using Bit.Core.Enums;
using Bit.Core.Models.View;
2023-09-29 16:02:19 +02:00
using Microsoft.Maui.Controls;
using Microsoft.Maui;
namespace Bit.App.Utilities
{
public class SendIconGlyphConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
var send = value as SendView;
if (send == null)
{
return null;
}
string icon = null;
switch (send.Type)
{
case SendType.Text:
2022-01-21 10:31:03 +01:00
icon = BitwardenIcons.FileText;
break;
case SendType.File:
2022-01-21 10:31:03 +01:00
icon = BitwardenIcons.File;
break;
}
return icon;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}