Closed StanleyBroo closed 5 years ago
We have tried changing the baseviewmodel class and set compare prop to false, but same behaviour, this is control/platform related. If we reverse back to previous versions of XF, the entry field works as expected on UWP. Android is working as expected on both versions of XF
This is related to animations. If scaling the grid onappearing the entry text is invisible on UWP when the animation is done. But can be seen if focus on the entry
` login_frame.Scale = 0.0; login_frame.IsVisible = true; await Task.Run(async () => await Task.Delay(400)); await login_frame.ScaleTo(1.5, 300, Easing.CubicIn); await login_frame.ScaleTo(1, 300, Easing.CubicOut); await Task.Run(async () => await Task.Delay(400));
await Header_lbl.FadeTo(1, 600);`
No text in UWP Entry when loaded, but shows up when focus on the entry field
Steps to Reproduce
Expected Behavior
Actual Behavior
prop/text doesn't show on UWP (entry) that is set before control is loaded.
Basic Information
`
/> `
Screenshots
Reproduction Link