Happy !
AliakseiSyrel / ABC-View
Monticello registration
About ABC-View
ABC-View
Simple UI library for Smalltalk kids.
Version 0.1
Main ABC philosophy is to be simple as alphabet. All UI elements are instances of View object or its subclass, even layouts. You can combine them as you want!
There is only one layout type:
- LinearLayout - has two orientations of subviews:
horizontalandvertical.
You can control position of child elements with gravity attribute:
View >> gravity: Gravity new %type%.
Types are:
- left
- top
- right
- bottom
- centerVertical
- centerHorizontal
- center
They even can be combined:
centerVertical + centerHorizontal = center or top + right = top right corner
Here some examples:

