graphix-package-gui 0.9.0

A dataflow language for UIs and network programming, GUI package
Documentation
type Radio = {
  disabled: &bool,
  value: &'a,
  label: &string,
  on_select: &fn(v: 'a) -> Any,
  selected: &'a,
  width: &Length,
  size: &[f64, null],
  spacing: &[f64, null]
};

val radio: fn(
  #label: &string,
  ?#selected: &'a,
  ?#on_select: fn(v: 'a) -> Any,
  ?#width: &Length,
  ?#size: &[f64, null],
  ?#spacing: &[f64, null],
  ?#disabled: &bool,
  value: &'a
) -> Widget