Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 1882b5d

Browse files
authored
[Core,iOS,Android] Remove experimental flags Carousel, Swipe, Shapes, Brush (#12068)
* [Core,iOS,Android] Remove experimental flags Carrousel,Swipe,Shapes,Brush,DragAndDrop * [Controls]Remove set some experimental flags
1 parent e57d160 commit 1882b5d

File tree

85 files changed

+11
-280
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+11
-280
lines changed

Xamarin.Forms.ControlGallery.Android/FormsAppCompatActivity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ protected override void OnCreate(Bundle bundle)
4545

4646
#if TEST_EXPERIMENTAL_RENDERERS
4747
#else
48-
Forms.SetFlags("UseLegacyRenderers", "SwipeView_Experimental");
48+
Forms.SetFlags("UseLegacyRenderers");
4949
#endif
5050
Forms.Init(this, bundle);
5151

Xamarin.Forms.ControlGallery.GTK/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ static void Main(string[] args)
2121
GtkOpenGL.Init();
2222
GtkThemes.Init();
2323
Gtk.Application.Init();
24-
Forms.SetFlags("CarouselView_Experimental");
2524
FormsMaps.Init(string.Empty);
2625
Forms.Init();
2726
var app = new App();

Xamarin.Forms.ControlGallery.WPF/MainWindow.xaml.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ public partial class MainWindow : FormsApplicationPage
1010
public MainWindow()
1111
{
1212
InitializeComponent();
13-
Forms.SetFlags("CarouselView_Experimental", "RadioButton_Experimental");
1413
Xamarin.Forms.Forms.Init();
1514
FormsMaps.Init("");
1615
LoadApplication(new Controls.App());
17-
}
16+
}
1817
}
1918
}

Xamarin.Forms.ControlGallery.WindowsUniversal/App.xaml.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ protected override void OnLaunched(LaunchActivatedEventArgs e)
7171

7272
rootFrame.NavigationFailed += OnNavigationFailed;
7373

74-
Forms.SetFlags("Shell_UWP_Experimental", "SwipeView_Experimental");
74+
Forms.SetFlags("Shell_UWP_Experimental");
75+
7576
Forms.Init (e);
7677
//FormsMaps.Init (Controls.App.Config["UWPMapsAuthKey"]);
7778

Xamarin.Forms.ControlGallery.iOS/AppDelegate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public override bool FinishedLaunching(UIApplication uiApplication, NSDictionary
151151
App.IOSVersion = int.Parse(versionPart[0]);
152152

153153
Xamarin.Calabash.Start();
154-
Forms.SetFlags("SwipeView_Experimental");
154+
155155
Forms.Init();
156156
FormsMaps.Init();
157157
FormsMaterial.Init();

Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue10530.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,6 @@ public Issue10530()
101101

102102
protected override void Init()
103103
{
104-
#if APP
105-
Device.SetFlags(new List<string>(Device.Flags ?? new List<string>()) { "SwipeView_Experimental" });
106-
#endif
107104
}
108105
}
109106

Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue10679.xaml.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ public partial class Issue10679 : TestShell
1818
public Issue10679()
1919
{
2020
#if APP
21-
Device.SetFlags(new List<string>(Device.Flags ?? new List<string>()) { "SwipeView_Experimental" });
2221
InitializeComponent();
2322
#endif
2423
}

Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue10875.xaml.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ public partial class Issue10875 : TestContentPage
2222
public Issue10875()
2323
{
2424
#if APP
25-
Device.SetFlags(new List<string>(Device.Flags ?? new List<string>()) { "SwipeView_Experimental" });
2625
InitializeComponent();
2726
BindingContext = new Issue10875ViewModel();
2827
#endif

Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue10940.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ public class Issue10940 : TestContentPage
2121
{
2222
public Issue10940()
2323
{
24-
#if APP
25-
Device.SetFlags(new List<string> { ExperimentalFlags.SwipeViewExperimental });
26-
#endif
2724
}
2825

2926
protected override void Init()

Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue11050.xaml.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ public partial class Issue11050 : ContentPage
2121
public Issue11050()
2222
{
2323
#if APP
24-
Device.SetFlags(new List<string> { ExperimentalFlags.ShapesExperimental });
25-
24+
2625
InitializeComponent();
2726

2827
Device.StartTimer(TimeSpan.FromMilliseconds(15), () =>

0 commit comments

Comments
 (0)