Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
flet / controls / material / filled_button.py
Size: Mime:
from flet.controls.base_control import control
from flet.controls.material.button import Button


@control("FilledButton")
class FilledButton(Button):
    """
    Filled buttons have the most visual impact after the
    [`FloatingActionButton`][flet.FloatingActionButton], and is typically used for
    important, final actions that complete a flow, like "Save",
    "Join now", or "Confirm".
    """

    pass