Reference version

This is documentation for the next SDK version. For up-to-date documentation, see the latest version (SDK 55).

按钮

一个用于显示原生按钮的 SwiftUI Button 组件。

iOS
tvOS

For the complete documentation index, see llms.txt. Use this Use this file to discover all available pages.

Expo UI Button 与官方 SwiftUI Button API 一致,并支持通过 buttonStylecontrolSize 以及其他修饰器进行样式设置。

安装

Terminal
npx expo install @expo/ui

If you are installing this in an existing React Native app, make sure to install expo in your project.

用法

基础按钮

BasicButtonExample.tsx
import { Host, Button } from '@expo/ui/swift-ui'; export default function BasicButtonExample() { return ( <Host matchContents> <Button label="按我" onPress={() => alert('已按下!')} /> </Host> ); }

带系统图像的按钮

ButtonWithImageExample.tsx
import { Host, Button } from '@expo/ui/swift-ui'; export default function ButtonWithImageExample() { return ( <Host matchContents> <Button label="下载" systemImage="arrow.down.circle" onPress={() => alert('正在下载...')} /> </Host> ); }

仅图标按钮

使用 labelStyle 修饰器在保留辅助功能标签的同时仅显示图标。

IconOnlyButtonExample.tsx
import { Host, Button } from '@expo/ui/swift-ui'; import { labelStyle } from '@expo/ui/swift-ui/modifiers'; export default function IconOnlyButtonExample() { return ( <Host matchContents> <Button label="设置" systemImage="gear" modifiers={[labelStyle('iconOnly')]} onPress={() => alert('设置')} /> </Host> ); }

按钮样式

使用 buttonStyle 修饰器更改按钮外观。可用样式有:borderedborderedProminentborderlessplainglassglassProminent

注意: glassglassProminent 样式仅在使用 Xcode 26 构建时、iOS 26+ 上可用。

ButtonStylesExample.tsx
import { Host, Button, VStack } from '@expo/ui/swift-ui'; import { buttonStyle } from '@expo/ui/swift-ui/modifiers'; export default function ButtonStylesExample() { return ( <Host matchContents> <VStack spacing={8}> <Button label="有边框" modifiers={[buttonStyle('bordered')]} /> <Button label="突出有边框" modifiers={[buttonStyle('borderedProminent')]} /> <Button label="无边框" modifiers={[buttonStyle('borderless')]} /> <Button label="纯文本" modifiers={[buttonStyle('plain')]} /> </VStack> </Host> ); }

控件尺寸

使用 controlSize 修饰器调整按钮大小。可用尺寸有:minismallregularlargeextraLarge

注意: extraLarge 尺寸仅在 iOS 17+ 上可用。

ControlSizeExample.tsx
import { Host, Button, VStack } from '@expo/ui/swift-ui'; import { buttonStyle, controlSize } from '@expo/ui/swift-ui/modifiers'; export default function ControlSizeExample() { return ( <Host matchContents> <VStack spacing={8}> <Button label="迷你" modifiers={[controlSize('mini'), buttonStyle('bordered')]} /> <Button label="" modifiers={[controlSize('small'), buttonStyle('bordered')]} /> <Button label="常规" modifiers={[controlSize('regular'), buttonStyle('bordered')]} /> <Button label="" modifiers={[controlSize('large'), buttonStyle('bordered')]} /> </VStack> </Host> ); }

按钮角色

使用 role 属性指示按钮的语义角色。可用角色有:defaultcanceldestructive

ButtonRolesExample.tsx
import { Host, Button, VStack } from '@expo/ui/swift-ui'; export default function ButtonRolesExample() { return ( <Host matchContents> <VStack spacing={8}> <Button label="默认" role="default" /> <Button label="取消" role="cancel" /> <Button label="删除" role="destructive" /> </VStack> </Host> ); }

着色按钮

使用 tint 修饰器更改按钮颜色。

TintedButtonExample.tsx
import { Host, Button } from '@expo/ui/swift-ui'; import { tint } from '@expo/ui/swift-ui/modifiers'; export default function TintedButtonExample() { return ( <Host matchContents> <Button label="自定义颜色" modifiers={[tint('#FF6347')]} /> </Host> ); }

禁用按钮

使用 disabled 修饰器禁用按钮。

DisabledButtonExample.tsx
import { Host, Button } from '@expo/ui/swift-ui'; import { disabled } from '@expo/ui/swift-ui/modifiers'; export default function DisabledButtonExample() { return ( <Host matchContents> <Button label="已禁用" modifiers={[disabled()]} /> </Host> ); }

自定义标签内容

你可以将自定义组件作为 children 传入,以实现更复杂的按钮标签内容。

CustomContentExample.tsx
import { Host, Button, VStack, Image, Text } from '@expo/ui/swift-ui'; export default function CustomContentExample() { return ( <Host matchContents> <Button onPress={() => console.log('已按下!')}> <VStack spacing={4}> <Image systemName="folder" /> <Text>文件夹</Text> </VStack> </Button> </Host> ); }

API

import { Button } from '@expo/ui/swift-ui';

Component

Button

iOS
tvOS

Type: React.Element<ButtonProps>

Displays a native button component.

Example

import { Button } from '@expo/ui/swift-ui'; import { buttonStyle, controlSize, tint, disabled } from '@expo/ui/swift-ui/modifiers'; <Button role="destructive" onPress={handlePress} label="Delete" modifiers={[ buttonStyle('bordered'), controlSize('large'), tint('#FF0000'), disabled(true) ]} />

ButtonProps

children

iOS
tvOS
Optional • Literal type: union

Custom content for the button label. Use this for custom label views. Only nested elements are supported, not plain strings.

Acceptable values are: React.ReactElement | React.ReactElement

label

iOS
tvOS
Optional • Type: string

The text label for the button. Use this for simple text buttons.

onPress

iOS
tvOS
Optional • Type: () => void

A callback that is called when the button is pressed.

role

iOS
tvOS
Optional • Type: ButtonRole

Indicates the role of the button.

systemImage

iOS
tvOS
Optional • Type: SFSymbol

A string describing the system image to display in the button. Only used when label is provided.

target

iOS
tvOS
Optional • Type: string

Target identifier for the button, used for identifying which button was pressed in widgets and live activities.

Types

ButtonRole

iOS
tvOS

Literal Type: string

The role of the button.

  • default - The default button role.
  • cancel - A button that cancels the current operation.
  • destructive - A button that deletes data or performs a destructive action.

Acceptable values are: 'default' | 'cancel' | 'destructive'