import React, { Component } from 'react' import { View, Text, Button, TextInput, FlatList, Keyboard } from 'react-native' import * as styles from './styles' import { cycleDaysSortedbyTempValueView, saveTemperature } from './db' export default class Temp extends Component { constructor(props) { super(props) this.state = { currentValue: '', rerenderToggle: false } } render() { return ( { this.setState({currentValue: val}) }} keyboardType='numeric' value = {this.state.currentValue} />