Progress Bar

The progress bar is a simple widget for showing a percentage progress for task completion.

Usage

import toga

p_bar = toga.ProgressBar(max=100, value=1)

# Update progress
p_bar.value = 10

Supported Platforms

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

Reference