darkmoon_uk
09/13/2021, 12:29 PMAnimatedContent
driven slide transition between master/detail views.
When starting the app with the old Window { <content> }
function, it is reliable and silky smooth 👌.
Now when starting with application { Window { <content> } }
the animation works maybe 1 in every 10 triggers. The content is all the same...
Is this a known issue; any likely causes? Using 1.0.0-alpha4-build344
Igor Demin
09/13/2021, 12:49 PMimport androidx.compose.ui.awt.ComposeWindow
import java.awt.Dimension
import javax.swing.SwingUtilities
fun main() = SwingUtilities.invokeLater {
ComposeWindow().apply {
size = Dimension(500, 500)
setContent {
}
isVisible = true
}
}
If it will disappear then it is because of this issue (I am trying to fix it now)darkmoon_uk
09/13/2021, 1:11 PMdarkmoon_uk
09/13/2021, 1:11 PMdarkmoon_uk
09/13/2021, 1:12 PMIgor Demin
09/13/2021, 1:14 PM