How to make ViewPager layer stacked from previous screen in Kotlin?
I have 3 Tab Items, and according to each tab, It shows different ViewPager above.
But in case of the third tab, if I click 3rd tab, I want this Fragment goes up of previous screen.
So 3rd screen has gray-transparent background and will show blurred- previous screen on back.
I guess, since I make tab navigation with ViewPager, this idea is not possible, since it swipes, not stacked each other.
Is there any idea to make my idea possible?
Should I change from ViewPager to other Widget?