Skills Plugins MCP Prompt Model 博客 我的中心
开发编程 #react #mobile

react-native-design

Master React Native styling, navigation, and Reanimated animations for cross-platform mobile development. Use when building React Native apps, implementing navigation patterns, or creating performant animations.

DeepseekModel 官方收录技能 质量 优秀 · 90 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=wshobson-agents-plugins-ui-design-skills-react-native-design-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name react-native-design description Master React Native styling, navigation, and Reanimated animations for cross-platform mobile development. Use when building React Native apps, implementing navigation patterns, or creating performant animations. React Native Design Master React Native styling patterns, React Navigation, and Reanimated 3 to build performant, cross-platform mobile applications with native-quality user experiences. When to Use This Skill Building cross-platform mobile apps with React Native Implementing navigation with React Navigation 6+ Creating performant animations with Reanimated 3 Styling components with StyleSheet and styled-components Building responsive layouts for different screen sizes Implementing platform-specific designs (iOS/Android) Creating gesture-driven interactions with Gesture Handler Optimizing React Native performance Detailed section: Core Concepts Originally a 6471-byte section in this SKILL.md. Moved to references/details.md to fit Codex's 8 KB skill body cap. Quick Start Component import React from 'react' ; import { View , Text , StyleSheet , Pressable , Image , } from 'react-native' ; import Animated , { useSharedValue, useAnimatedStyle, withSpring, } from 'react-native-reanimated' ; interface ItemCardProps { title : string ; subtitle : string ; imageUrl : string ; onPress : () => void ; } const AnimatedPressable = Animated . createAnimatedComponent ( Pressable ); export function ItemCard ( { title, subtitle, imageUrl, onPress }: ItemCardProps ) { const scale = useSharedValue ( 1 ); const animatedStyle = useAnimatedStyle ( () => ({ transform : [{ scale : scale. value }], })); return ( < AnimatedPressable style = {[styles.card, animatedStyle ]} onPress = {onPress} onPressIn = {() => { scale.value = withSpring(0.97); }} onPressOut={() => { scale.value = withSpring(1); }} > < Image source = {{ uri: imageUrl }} style = {styles.image} /> < View style = {styles.content} > < Text style = {styles.title} numberOfLines = {1} > {title} </ Text > < Text style = {styles.subtitle} numberOfLines = {2} > {subtitle} </ Text > </ View > </ AnimatedPressable > ); } const styles = StyleSheet . create ({ card : { backgroundColor : '#ffffff' , borderRadius : 16 , overflow : 'hidden' , shadowColor : '#000' , shadowOffset : { width : 0 , height : 2 }, shadowOpacity : 0.1 , shadowRadius : 8 , elevation : 4 , }, image : { width : '100%' , height : 160 , backgroundColor : '#f3f4f6' , }, content : { padding : 16 , gap : 4 , }, title : { fontSize : 18 , fontWeight : '600' , color : '#1f2937' , }, subtitle : { fontSize : 14 , color : '#6b7280' , lineHeight : 20 , }, }); Best Practices Use TypeScript : Define navigation and prop types for type safety Memoize Components : Use React.memo and useCallback to prevent unnecessary rerenders Run Animations on UI Thread : Use Reanimated worklets for 60fps animations Avoid Inline Styles : Use StyleSheet.create for performance Handle Safe Areas : Use SafeAreaView or useSafeAreaInsets Test on Real Devices : Simulator/emulator performance differs from real devices Use FlatList for Lists : Never use ScrollView with map for long lists Platform-Specific Code : Use Platform.select for iOS/Android differences Common Issues Gesture Conflicts : Wrap gestures with GestureDetector and use simultaneousHandlers Navigation Type Errors : Define ParamList types for all navigators Animation Jank : Move animations to UI thread with runOnUI worklets Memory Leaks : Cancel animations and cleanup in useEffect Font Loading : Use expo-font or react-native-asset for custom fonts Safe Area Issues : Test on notched devices (iPhone, Android with cutouts)
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。