Skip to content

Instantly share code, notes, and snippets.

@netopyr
Created February 21, 2017 20:28
Embed
What would you like to do?
Example of ReduxFX builder API 0.2
return HBox()
.padding(50.0)
.spacing(20.0)
.children(
ColorChooser()
.color(state.getColor(), (oldValue, newValue) -> Actions.updateColor(newValue)),
Region()
.background(state.getColor())
.minWidth(100.0)
.minHeight(100.0)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment