Reagieren Sie native Aktualisierungsoptionen mit Setoptionen
/* Inside of render() of React class */
<Button
title="Update the title"
onPress={() => navigation.setOptions({ title: 'Updated!' })}
/>
Leonardo