当前位置:网站首页>Flet教程之 06 TextButton基础入门(教程含源码)

Flet教程之 06 TextButton基础入门(教程含源码)

2022-07-04 18:49:00 知识大胖

什么是TextButton

文本按钮用于优先级最低的操作,尤其是在呈现多个选项时。文本按钮可以放置在各种背景上。在与按钮交互之前,它的容器是不可见的。

实战代码

在这里插入图片描述

import flet
from flet import Page, TextButton


def main(page: Page):
    page.title = "Basic text buttons"
    page.add(
        TextButton(text="Text button"),
        TextButton("Disabled button", disabled=True),
    )


flet.app(target=main)

带图标的button

在这里插入图片描述

import flet
from flet import Page, TextButton


def main(page: Page):
    page.title = "Text buttons with icons"
    page.add(
        TextButton("Button with icon", icon="chair_outlined"),
        TextButton(
            "Button
原网站

版权声明
本文为[知识大胖]所创,转载请带上原文链接,感谢
https://swiftui.blog.csdn.net/article/details/125595188