This documentation is available as Markdown for AI agents and LLMs. See the full Markdown index or append .md to any documentation URL.

SwipeActions

一个 SwiftUI SwipeActions 组件,用于向行内容添加前置和后置滑动操作。

iOS
Included in Expo Go
Recommended version:
~57.0.3

Expo UI 的 SwipeActions 匹配官方 SwiftUI 的 swipeActions 修饰符,并允许你将前置或后置操作附加到行内容上。

安装

🌐 Installation

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.

用法

🌐 Usage

SwipeActionsExample.tsx
import { Button, Host, List, Section, SwipeActions, Text } from '@expo/ui/swift-ui'; export default function SwipeActionsExample() { return ( <Host style={{ flex: 1 }}> <List> <Section> <SwipeActions> <Text>Message from Expo</Text> <SwipeActions.Actions edge="leading" allowsFullSwipe={false}> <Button label="Pin" systemImage="pin" onPress={() => {}} /> </SwipeActions.Actions> <SwipeActions.Actions edge="trailing"> <Button label="Delete" systemImage="trash" role="destructive" onPress={() => {}} /> </SwipeActions.Actions> </SwipeActions> </Section> </List> </Host> ); }

应用接口

🌐 API

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

Components

SwipeActions

Only for:
iOS

Type: React.Element<SwipeActionsProps>

Applies native SwiftUI swipe actions to its non-slot children.

SwipeActionsProps

children

Only for:
iOS

Type: ReactNode

The regular content and SwipeActions.Actions action groups.

Actions

Type: React.Element<SwipeActionsGroupProps>

The buttons revealed when the user swipes the regular content from an edge.

Types

SwipeActionsEdge

Literal Type: string

Acceptable values are: 'leading' | 'trailing'