const React = require('react'); const { Component } = require('react'); const { View, Text, Button } = require('react-native'); const { Navigation } = require('react-native-navigation'); const testIDs = require('../testIDs'); const BUTTON_ONE = 'buttonOne'; const BUTTON_TWO = 'buttonTwo'; const BUTTON_LEFT = 'buttonLeft'; class OptionsScreen extends Component { static get options() { return { topBar: { title: 'Static Title', textColor: 'black', drawUnder: false, largeTitle: false, hidden: false, textFontSize: 16, textFontFamily: 'HelveticaNeue-Italic', testID: testIDs.TOP_BAR_ELEMENT, rightButtons: [{ id: BUTTON_ONE, testID: BUTTON_ONE, title: 'One', buttonFontSize: 28, buttonColor: 'red' }], leftButtons: [{ id: BUTTON_LEFT, testID: BUTTON_LEFT, icon: require('../../img/navicon_add.png'), title: 'Left', buttonColor: 'purple' }] } }; } constructor(props) { super(props); this.onClickDynamicOptions = this.onClickDynamicOptions.bind(this); this.onClickShowTopBar = this.onClickShowTopBar.bind(this); this.onClickHideTopBar = this.onClickHideTopBar.bind(this); this.onClickScrollViewScreen = this.onClickScrollViewScreen.bind(this); this.onClickTopBarTransparent = this.onClickTopBarTransparent.bind(this); this.onClickTopBarOpaque = this.onClickTopBarOpaque.bind(this); this.onClickCustomTranstition = this.onClickCustomTranstition.bind(this); this.onClickShowOverlay = this.onClickShowOverlay.bind(this); this.onClickPushDefaultOptionsScreen = this.onClickPushDefaultOptionsScreen.bind(this); } render() { return ( {`Options Screen`}