'Square up Flow History Clear

I am learning android MVP pattern implementation with Square up Motor & Flow concept. I dont know how to clear my Flow history after user login is succeed. Any one can suggest how to archive this?



Solution 1:[1]

It's

Flow.get(context).setHistory(
    History.emptyBuilder().push(new AfterLoginState()).build(), 
    Direction.FORWARD
);

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 EpicPandaForce