diff --git a/app/views/note/inputSupport/NoteInputSupport.js b/app/views/note/inputSupport/NoteInputSupport.js index 7b75e01..c5c0dce 100644 --- a/app/views/note/inputSupport/NoteInputSupport.js +++ b/app/views/note/inputSupport/NoteInputSupport.js @@ -3,78 +3,91 @@ import { Text, View, TouchableHighlight, + ScrollView, } from 'react-native' import Styles from './NoteInputSupportStyles' export default class NoteInputSupport extends React.Component { render() { return ( - - { - this.props.insertMarkdownBetween('#') - }} - style={Styles.inputElementsStyle}> - - # - Head - - - { - this.props.insertMarkdownBetween('- ') - }} - style={Styles.inputElementsStyle}> - - - - List - - - { - this.props.insertMarkdownBetween('```\n') - }} - style={Styles.inputElementsStyle}> - - ``` - Code - - - { - this.props.insertMarkdownBetween('**') - }} - style={Styles.inputElementsStyle}> - - ** - Bold - - - { - this.props.insertMarkdownBetween('_') - }} - style={Styles.inputElementsStyle}> - - _ - italic - - - { - this.props.insertMarkdownBetween('> ') - }} - style={Styles.inputElementsStyle}> - - > - Quote - - - - Paste - + + + { + this.props.insertMarkdownBetween('#') + }} + style={Styles.inputElementsStyle}> + + # + Head + + + { + this.props.insertMarkdownBetween('- ') + }} + style={Styles.inputElementsStyle}> + + - + List + + + { + this.props.insertMarkdownBetween('```\n') + }} + style={Styles.inputElementsStyle}> + + ``` + Code + + + { + this.props.insertMarkdownBetween('**') + }} + style={Styles.inputElementsStyle}> + + ** + Bold + + + { + this.props.insertMarkdownBetween('_') + }} + style={Styles.inputElementsStyle}> + + _ + italic + + + { + this.props.insertMarkdownBetween('> ') + }} + style={Styles.inputElementsStyle}> + + > + Quote + + + { + this.props.insertMarkdownBetween('- [ ] ') + }} + style={Styles.inputElementsStyle}> + + - [ ] + TaskList + + + + Paste + + ) }