CupertinoActivityIndicator
Basic CupertinoActivityIndicator
        Inherits: LayoutControl
Properties
Examples#
Basic Example#
import flet as ft
def main(page: ft.Page):
    page.add(
        ft.CupertinoActivityIndicator(
            animating=True,
            color=ft.Colors.RED,
            radius=50,
        )
    )
ft.run(main)
Properties#
class-attribute
      instance-attribute
  
#
animating: bool = True
Whether this indicator is running its animation.
class-attribute
      instance-attribute
  
#
color: ColorValue | None = None
Defines the color of this indicator.
class-attribute
      instance-attribute
  
#
radius: Number = 10
The radius of this indicator.
Note
Must be strictly greater than 0.
Raises:
- 
              ValueError–If radiusis not strictly greater than0.

