jaqxues
12/08/2020, 12:15 PMColton Idle
12/08/2020, 3:40 PMjaqxues
12/08/2020, 4:53 PMkotlin
@Composable fun x() {
Graph {
for (node in node)
NodeComposable(node.content)
}
Its more of a 'hey how should i do it if anyone has an idea' not a 'solve it for me' questionZach Klippenstein (he/him) [MOD]
12/08/2020, 5:11 PMjaqxues
12/08/2020, 5:13 PMZach Klippenstein (he/him) [MOD]
12/08/2020, 5:25 PMonGloballyPositioned
, but you’d always have a frame of lag between drawing your graph nodes and drawing the connectors. You might be able to do something hacky where you cast Placeables
to `LayoutNode`s and figure out their position relative to your custom layout, but i’m not sure if that’s possible, and even if it is, it would be hacky and brittle.jaqxues
12/08/2020, 5:33 PM