@Arkadii Ivanov What is the best practice of dealing with repeating screens in different flows? For example I have a screen X which is present in 2 different flows A and B. Should I implement separate component A.X and B.X and bind it with a single UI composable function X.ui or should I have only one component X, included into 2 different flows? (The X could also have a corresponding Store, which also makes sense to reuse).