Window

A window for displaying components to the user

Usage

The window class is used for desktop applications, where components need to be shown within a window-manager. Windows can be configured on instantiation and support displaying multiple widgets, toolbars and resizing.

import toga

window = toga.Window('my window', title='This is a window!')
window.show()

Supported Platforms

Component iOS win32 web django cocoa gtk android
Window yes yes no yes yes yes yes

Reference