2022-08-30 15:42:25 +02:00
|
|
|
|
using Xamarin.Forms;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
|
|
|
|
namespace TINK.ViewModel.Map
|
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Holds an empty filter object.</summary>
|
|
|
|
|
/// <remarks>Old name: EmptyMapPageFilter</remarks>
|
|
|
|
|
public class EmptyToggleViewModel : ITinkKonradToggleViewModel
|
|
|
|
|
{
|
|
|
|
|
/// <summary> Holds the map page filter.</summary>
|
|
|
|
|
public IGroupFilterMapPage FilterDictionary => new GroupFilterMapPage();
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Active filter</summary>
|
|
|
|
|
public string CurrentFitler => string.Empty;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public bool IsTinkEnabled => false;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public Color TinkColor => Color.Default;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public Color NoTinkColor => Color.Default;
|
2022-08-30 15:42:25 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public bool IsKonradEnabled => false;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public Color KonradColor => Color.Default;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public Color NoKonradColor => Color.Default;
|
2022-08-30 15:42:25 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public bool IsToggleVisible => false;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public string CurrentFilter => string.Empty;
|
|
|
|
|
}
|
2021-05-13 20:03:07 +02:00
|
|
|
|
}
|