Skip to content

Commit 1ec1852

Browse files
Amber-Nan杨楠
andauthored
fix(SwipeAction): 增加key (#312)
* fix:发布 iOS 应用商店:一. 创建AppID * fix:发布 iOS 应用商店优化排版 * fix:ios应用商店文档更新及排版优化 * fix:修改环境安装文档语法错误及部分内容优化 * fix:更新ios应用发布流程 * fix:ios应用商店发布更新 * fix:更新ios及安卓应用商店发布 * fix:安卓上架更新 * fix:增加button自定义文本实例 * fix:增加checkBox复选框size调整及文档描述效果展示 * doc:更新文档导入图片 * doc(website): Update Readme.md * fix:修复SpeedDial Android 点击事件失效及拖拽失效问题 #286 * fix:解决SelectCascader 在安卓端不能选择问题 #289 * fix:修复Modal 弹出动画底层延迟收起问题 * feat:NoticeBar 通告栏增加文字样式修改及页面demo展示 * doc(website): Update NoticeBar Readme.md * fix:解决 MenuDropdown 安卓下拉菜单被遮挡问题 * feat:Progress 新增进度图标 * doc(website): Update Progress Readme.md * style:删除多余代码 * feat:Progress 增加进度提示字展示 及 doc(website): Update Progress Readme.md * feat:Ellipsis 增加弹出展示全部文本内容 * fix:解决 Ellipsis 报错问题 * style:Update local code * fix:解决 NoticeBar首次渲染报错问题 * fix:SwipeAction 增加key Co-authored-by: 杨楠 <yangnan@nihaosi.com>
1 parent 0b47614 commit 1ec1852

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/SwipeAction/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const SwipeAction = (props: SwipeActionProps, ref: any) => {
7676
extrapolate: 'clamp',
7777
});
7878
return (
79-
<Animated.View style={{ flex: 1, transform: [{ translateX: trans }] }}>
79+
<Animated.View key={idx} style={{ flex: 1, transform: [{ translateX: trans }] }}>
8080
<RectButton
8181
style={[styles.rightAction, { backgroundColor: color }]}
8282
onPress={() => {

0 commit comments

Comments
 (0)