Skip to content

Instantly share code, notes, and snippets.

@nazrdogan
Created February 12, 2019 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nazrdogan/03b647fc0e379ed8eea89fe044142fc6 to your computer and use it in GitHub Desktop.
Save nazrdogan/03b647fc0e379ed8eea89fe044142fc6 to your computer and use it in GitHub Desktop.
class HomeScreen extends React.Component {
static navigationOptions = {
title: 'Home',
headerStyle: {
backgroundColor: '#f32356',
},
headerTintColor: '#000',
headerTitleStyle: {
fontWeight: 'bold',
},
};
}
class DetailsScreen extends React.Component {
static navigationOptions = {
title: 'Details',
headerStyle: {
backgroundColor: '#f4511e',
},
headerTintColor: '#fff',
headerTitleStyle: {
fontWeight: 'bold',
},
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment