I cannot find the "start" method in the Flow class in the current 8.05b release anymore. The javadoc on your website is even not showing the FLow class itself. But I found the class in the soruce files Sorry for that stupid questions but I`m a newbie in DataFx. I try to implement a main view with a login dialog.
Flow flow = new Flow(MainController.class).
// By using the fluent API a link is added to the flow. The link has
// the unique id "edit" and will link from the MasterView to the
// EditView
withLink(MainController.class, "showLogin",
LoginController.class).
// A link is added to the flow. The link has the unique id
// "save" and will link from the EditView to the MasterView
withLink(LoginController.class, "doLogin",
MainController.class).
// This starts the Flow
StackPane parent = flow.start();
Scene scene = new Scene(parent);
stage.setScene(scene);
stage.show();