Example of ReduxFX builder API 0.1
return HBox( | |
padding(50.0), | |
spacing(20.0), | |
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