NewHSplitter creates and returns a pointer to a new horizontal splitter widget with the specified initial dimensions
(width, height float32)
| 40 | // NewHSplitter creates and returns a pointer to a new horizontal splitter |
| 41 | // widget with the specified initial dimensions |
| 42 | func NewHSplitter(width, height float32) *Splitter { |
| 43 | |
| 44 | return newSplitter(true, width, height) |
| 45 | } |
| 46 | |
| 47 | // NewVSplitter creates and returns a pointer to a new vertical splitter |
| 48 | // widget with the specified initial dimensions |
no test coverage detected