baskren / Forms9Patch

Simplify image management and text formatting in your Xamarin.Forms apps
http://Forms9Patch.com
Other
127 stars 33 forks source link

[Bug?] TargetedMenu start with big size then go to actual size #96

Open Wutthilert opened 3 years ago

Wutthilert commented 3 years ago

TargetedMenu tm = new TargetedMenu(clickBtn); tm.Orientation = StackOrientation.Vertical; tm.SeparatorColor = Color.Blue; tm.SeparatorThickness = 2; tm.SegmentTapped += Tm_SegmentTapped; List items = new List(); items.Add(new Segment { Text = "Button 1" }); items.Add(new Segment { Text = "Button 2" }); items.Add(new Segment { Text = "Button 3" }); tm.Segments = items; tm.PushAsync();

Steps to Reproduce

Expected Behavior

Actual Behavior

Basic Information

frm1 frm2

Screenshots

also test with IsAnimationEnabled = false; It happen sometimes and at first time seems toke longer time before respond

in MainActivity.cs also push Forms9Patch.Droid.Settings.Initialize(this); before LoadApplication(new App()); Thank you