PopView

Here you’ll find PopView description.

What is it?

Closes the current exhibition screen.

How to use it?

On the example below there’s a screen coming from BFF with a button that when clicked, removes the current fragment.

To test, your BFF’s endpoint should return the screen with the code below and call it in the frontend.

Screen(
    child = Button(
        text = "Click me!",
        onPress = listOf(
            Navigate.PopView()
        )
    )
)

Last modified February 11, 2021: create content (#298) (43225e15)