Skip to content

Instantly share code, notes, and snippets.

@netopyr
Created February 21, 2017 20:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save netopyr/a1d439332fe9f079ab6ce95b670f11d4 to your computer and use it in GitHub Desktop.
Save netopyr/a1d439332fe9f079ab6ce95b670f11d4 to your computer and use it in GitHub Desktop.
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