[NUI] Fix Navigator not to make ContentPage.Content hide
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Tue, 10 May 2022 03:42:30 +0000 (12:42 +0900)
committerSangHyeon Jade Lee <dltkdgus1764@gmail.com>
Tue, 10 May 2022 06:09:58 +0000 (15:09 +0900)
commitfdcbb1b6533e0e39396fda2851220b76528c62d3
tree08ce365ddefdff6d05263bc6cf4074eab7cf3cfb
parent7767b41d881e55f1df2adb5eacddffa344fa26d4
[NUI] Fix Navigator not to make ContentPage.Content hide

ContentPage.Content becomes hidden when push/pop were finished to
unregister accessibility.
i.e. Show() registers accessibility.
     Hide() unregisters accessibility.

Previously, ContentPage.Content was invisible when push/pop were
started because the invisible state remained since the previous
push/pop were finished.
e.g. PageTransitionSample in Tizen.NUI.Samples

Now, ContentPage.Content is visible when push/pop are started.
i.e. SetVisible(true) is called for ContentPage.Content to make it
     visible but not to register accessibility at that time.
src/Tizen.NUI.Components/Controls/Navigation/Navigator.cs