我只需要帮助,activeBackgroundColor在React-navigation v5中的DrawerItem中不起作用。但是inactiveBackgroundColor起作用。请帮助我:(
<DrawerItem
label="Porte Monnaie"
labelStyle={styles.drawerLabel}
style={styles.link}
activeBackgroundColor={'red'}
onPress={() => props.navigation.navigate("Solde")}
icon={() => (
<Image
style={{ width: 20, height: 20 }}
source={require("../../assets/images/wallet.png")}
/>
)}
/> ```