Guest User

Untitled

a guest
May 24th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. static navigationOptions =({navigation})=> {
  2.  
  3.  
  4. return {
  5. headerTitle: <Logo type="default_logo" />,
  6. headerTitleStyle: { alignItems: "center" },
  7. headerStyle: {
  8. paddingRight: 10,
  9. paddingLeft: 10
  10. },
  11. headerLeft: (
  12. <ClickableIcon
  13. source={NotificationInactive}
  14. height={35}
  15. width={35}
  16. onIconPressed={() => alert("Notifications Clicked")}
  17. />
  18. ),
  19. headerRight: (
  20. <ClickableIcon
  21. height={35}
  22. width={35}
  23. source={AddNewUserInactive}
  24. onIconPressed={() => alert("Add New Clicked")}
  25. />
  26. )
  27. }
Add Comment
Please, Sign In to add comment