Note: This is a pre-release of Bagawork. Many things will likely change before the first stable release.

Space

On this page you find the documentation for the GUI Component Space.

Introduction

The Space component is a view whose sole purpose is to occupy space on the screen, so other children in Rows and Columns layouts are positioned where they should.

Example
Open in Online Editor
class StartPage extends Page{
	
	createGui(){
		return Space.backgroundColor(`green`)
	}
	
}