Created
February 21, 2017 20:25
-
-
Save netopyr/a1d439332fe9f079ab6ce95b670f11d4 to your computer and use it in GitHub Desktop.
Example of ReduxFX builder API 0.1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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