import React, { Component } from 'react'; import { View, SectionList, Text, Button } from 'react-native'; export default class HomeScreen extends Component { constructor(props) { super(props); this.state = { bgColor: '#cb2600', }; } clickMe = () => { if (this.state.bgColor === '#a8139f') { this.setState({ bgColor: '#cb2600' }); } else { this.setState({ bgColor: '#a8139f' }); } }; render() { return ( Hello World