forked from vergnet/application-amicale
Fixed missing key warning
This commit is contained in:
parent
8b4348a6a2
commit
d0ced5d1e6
1 changed files with 4 additions and 1 deletions
|
@ -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>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue