FillLayout is the simple layout where the assigned panel "fills" its parent in the specified dimension(s)
| 6 | |
| 7 | // FillLayout is the simple layout where the assigned panel "fills" its parent in the specified dimension(s) |
| 8 | type FillLayout struct { |
| 9 | width bool |
| 10 | height bool |
| 11 | } |
| 12 | |
| 13 | // NewFillLayout creates and returns a pointer of a new fill layout |
| 14 | func NewFillLayout(width, height bool) *FillLayout { |
nothing calls this directly
no outgoing calls
no test coverage detected