Repository URL to install this package:
|
Version:
0.70.0.dev5755 ▾
|
from dataclasses import field
from flet.controls.base_control import control
from flet.controls.colors import Colors
from flet.controls.core.canvas.path import Path
from flet.controls.core.canvas.shape import Shape
from flet.controls.types import ColorValue, Number
__all__ = ["Shadow"]
@control("Shadow")
class Shadow(Shape):
"""
Draws a shadow for a [`path`][(c).] representing
the given material [`elevation`][(c).].
Note:
The [`transparent_occluder`][(c).] argument should
be `True` if the occluding object is not opaque.
"""
path: list[Path.PathElement] = field(default_factory=list)
"""
The list of elements describing the path of this shape.
"""
color: ColorValue = Colors.BLACK
"""
The shadow's color.
"""
elevation: Number = 0
"""
The shadow's elevation.
"""
transparent_occluder: bool = False
"""
Whether the occluding object is transparent (not opaque).
"""