mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
* Bootstrap new classes for settings list * [SG-834] Add new method GetActivePasswordlessLoginRequestsAsync to AuthService * [SG-834] Add generic handle exception method to BaseViewModel * [SG-834] Add request verification to settings entry * [SG-834] Add text resources * [SG-834] Update view and viewmodel * [SG-834] Remove unnecessary property assignment * [SG-834] removed logger resolve
21 lines
533 B
C#
21 lines
533 B
C#
using System.Linq;
|
|
using Xamarin.CommunityToolkit.Converters;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class ExtendedCollectionView : CollectionView
|
|
{
|
|
public string ExtraDataForLogging { get; set; }
|
|
}
|
|
|
|
public class SelectionChangedEventArgsConverter : BaseNullableConverterOneWay<SelectionChangedEventArgs, object>
|
|
{
|
|
public override object? ConvertFrom(SelectionChangedEventArgs? value)
|
|
{
|
|
return value?.CurrentSelection.FirstOrDefault();
|
|
}
|
|
}
|
|
|
|
}
|