import React from 'react'; import { StyleSheet, Text, Pressable, View, TextInput, Button } from 'react-native'; export default function TitleBarButton(props){ return( { props.onChangeDuration(props.durationMode) props.onDurationEdit(null); }}> {props.durationMode} ) } const styles = StyleSheet.create({ button: { padding: 1, margin:1, borderWidth: 1, }, input: { borderWidth: 0.5 }, highlighted: { backgroundColor: "#ECECEC", borderWidth: 1.5, } });