зеркало из https://github.com/DeGsoft/maui-linux.git
18 строки
369 B
C#
18 строки
369 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Xamarin.Forms.Controls.Issues
|
|
{
|
|
internal static class FlagTestHelpers
|
|
{
|
|
public static void SetTestFlag(string flag)
|
|
{
|
|
Device.SetFlags(new List<string>(Device.Flags ?? new List<string>()) { flag });
|
|
}
|
|
|
|
public static void SetCollectionViewTestFlag()
|
|
{
|
|
SetTestFlag("CollectionView_Experimental");
|
|
}
|
|
}
|
|
}
|