Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a web widget for the activity indicator (shoelace spinner) #2050

Merged
merged 6 commits into from Jul 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/2050.feature.rst
@@ -0,0 +1 @@
An implementation of ActivityIndicator was added to the Web backend.
2 changes: 1 addition & 1 deletion core/src/toga/style/pack.py
Expand Up @@ -767,7 +767,7 @@ def __css__(self):
if (self.width == NONE and self.direction == ROW) or (
self.height == NONE and self.direction == COLUMN
):
css.append(f"flex: {self.flex} 0 0;")
css.append(f"flex: {self.flex} 0 auto;")

# width/flex
if self.width != NONE:
Expand Down