graphix-package-gui 0.8.0

A dataflow language for UIs and network programming, GUI package
Documentation
1
2
3
4
5
6
7
8
9
10
11
type Stack = {
  children: &Array<Widget>,
  width: &Length,
  height: &Length
};

val stack: fn(
  ?#width: &Length,
  ?#height: &Length,
  children: &Array<Widget>
) -> Widget