issues
search
bodil
/
vgtk
A declarative desktop UI framework for Rust built on GTK and Gtk-rs
http://bodil.lol/vgtk/
Other
1.06k
stars
36
forks
source link
Add docs for grid layout
#28
Closed
avranju
closed
4 years ago
avranju
commented
4 years ago
Added some documentation for using grid layout
I noticed that the grid support didn't quite fit the pattern used for other helper traits. Specifically,
All helper traits are in the
ext
module -- so this PR moves the grid implementation into
ext
.
All helper traits seem to have an
ExtHelpers
suffix -- so this PR renames
GridProps
to
GridExtHelpers
.
Like the other helper traits,
GridExtHelpers
is now a supertrait of
GridExt
and implements it for
Grid
via a blanket implementation
bodil
commented
4 years ago
:+1:
ext
module -- so this PR moves the grid implementation intoext
.ExtHelpers
suffix -- so this PR renamesGridProps
toGridExtHelpers
.GridExtHelpers
is now a supertrait ofGridExt
and implements it forGrid
via a blanket implementation