跳到主要内容

CupertinoActionSheetAction

一个通常用于CupertinoActionSheet中的操作按钮。

示例

在线示例

基本示例

import flet as ft

def main(page):
page.theme_mode = ft.ThemeMode.LIGHT
page.horizontal_alignment = ft.CrossAxisAlignment.CENTER

action_sheet = ft.CupertinoActionSheet(
title=ft.Text("标题"),
message=ft.Text("消息"),
cancel=ft.CupertinoActionSheetAction(
content=ft.Text("取消"),
on_click=lambda e: page.close_bottom_sheet(),
),
actions=[
ft.CupertinoActionSheetAction(
content=ft.Text("默认操作"),
is_default_action=True,
on_click=lambda e: print("默认点击"),
),
ft.CupertinoActionSheetAction(
content=ft.Text("普通操作"),
on_click=lambda e: print("普通操作点击"),
),
ft.CupertinoActionSheetAction(
content=ft.Text("破坏性操作"),
is_destructive_action=True,
on_click=lambda e: print("破坏性操作点击"),
),
],
)

page.add(
ft.OutlinedButton(
"打开包含CupertinoActionSheet的CupertinoBottomSheet",
on_click=lambda e: page.show_bottom_sheet(
ft.CupertinoBottomSheet(action_sheet)
),
)
)

ft.app(main)

属性

content

在此操作按钮中显示的子控件。如果同时提供了textcontent,则使用content

is_default_action

是否此操作应具有强调的默认操作样式。

is_destructive_action

是否此操作应具有破坏性操作样式。

text

按钮中显示的文本。如果同时提供了textcontent,则使用content

事件

on_click

点击此操作按钮时触发。