NewVSplitter creates and returns a pointer to a new vertical splitter widget with the specified initial dimensions
(width, height float32)
| 47 | // NewVSplitter creates and returns a pointer to a new vertical splitter |
| 48 | // widget with the specified initial dimensions |
| 49 | func NewVSplitter(width, height float32) *Splitter { |
| 50 | |
| 51 | return newSplitter(false, width, height) |
| 52 | } |
| 53 | |
| 54 | // newSpliter creates and returns a pointer of a new splitter with |
| 55 | // the specified orientation and initial dimensions. |
no test coverage detected