In alpha05 I don't think compose navigation is interoperable with fragment navigation. But you could wrap your Fragment in an AndroidView
which is composes way of interoping with traditional android. Something like:
@Composable
fun MyFragDestination() {
AndroidView(
viewBlock = { // create fragment },
updateBlock = { // update fragment with new state }
}
}
And then call MyFragDestination
from the compose navigator.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…