vinay
03/23/2020, 3:44 PMWorkflowLayout
or do you combine layout runners when you need to do transitions between them?Ray Ryan
03/23/2020, 4:47 PMBackStackContainer
is non-final, with an open performTransition
. And see the PanelContainer
sample for customized dialog behavior.
https://github.com/square/workflow/blob/master/kotlin/samples/containers/android/src/main/java/com/squareup/sample/container/panel/PanelContainer.kt`Ray Ryan
03/23/2020, 4:47 PMRay Ryan
03/23/2020, 4:49 PMBackStackContainer
protected
instead of private
.Ray Ryan
03/23/2020, 4:50 PMvinay
03/23/2020, 5:10 PMBackStackContainer
. Though I have no requirement for back navigation so I haven't really modeled the renderings as a backstack.Ray Ryan
03/23/2020, 5:38 PMRay Ryan
03/23/2020, 5:39 PMRay Ryan
03/23/2020, 5:39 PMSebastian
04/09/2020, 8:48 PMFadeBackStackContainer
by subclassing BackStackContainer
. Well almost, I had to make a new BackStackContainer
that made the update
method protected
instead of private
because of the ViewBinding companion object
which needed access to the method.Ray Ryan
04/09/2020, 8:51 PMRay Ryan
04/10/2020, 5:40 PM