Fixed missing key warning

這個提交存在於:
Arnaud Vergnet 2020-04-17 21:16:02 +02:00
父節點 8b4348a6a2
當前提交 d0ced5d1e6

查看文件

@ -77,12 +77,15 @@ class CustomTabBar extends React.Component<Props> {
label={label}
focused={isFocused}
extraData={state.index > index}
key={route.key}
/>
} else
return <TabHomeIcon
onPress={onPress}
onLongPress={onLongPress}
focused={isFocused}/>
focused={isFocused}
key={route.key}
/>
})}
</View>
);