From d47f8774e2ae8ddcf28ffb8c3ec4dc040f485d75 Mon Sep 17 00:00:00 2001 From: Ahter Sonmez Date: Sun, 23 Jul 2023 13:44:07 +0100 Subject: [PATCH] Add ActivityIndicator for the web factories Prior to this change, ActivityIndicator wasn't part of the factory for the web example apps. This change imports and adds it so that it can be tested out. --- web/src/toga_web/factory.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/src/toga_web/factory.py b/web/src/toga_web/factory.py index be253f674f..8ca7af7735 100644 --- a/web/src/toga_web/factory.py +++ b/web/src/toga_web/factory.py @@ -8,6 +8,7 @@ # from .images import Image from .paths import Paths +from .widgets.activityindicator import ActivityIndicator from .widgets.box import Box from .widgets.button import Button @@ -64,6 +65,7 @@ def not_implemented(feature): # 'OptionContainer', # 'PasswordInput', "ProgressBar", + "ActivityIndicator", # 'ScrollContainer', # 'Selection', # 'Slider',