We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hi,
I would like your help. I have this setup:
render() { return ( <View style={styles.container}> <ListView style={styles.container} dataSource={this.state.dataSource} renderScrollComponent={props => <InvertibleScrollView {...props} inverted />} renderRow={(data) => <MessageRow navigator={this.props.navigator} {...data} />} renderSeparator={(sectionId, rowId) => <View key={rowId} style={styles.separator} />} /> <Grid> <Col size={70}> <FormInput placeholderTextColor={placeholderColor} inputStyle={styles.input} placeholder="Add your comment" onChangeText={(val) => this.setState({message : val})} value={this.state.message} multiline={true} numberOfLines={4} editable={true} /> </Col> <Col size={30}> <SubmitButton buttonStyle={styles.addButton} icon={{name: 'comment'}} title='' screen='Messages' onSubmit={this._submitComment} /> </Col> </Grid> </View> ); } } const styles = StyleSheet.create({ container: { flex: 1 }, commentContainer: { flexDirection: 'row' } });
This produces:
As you can see, there's a bunch of void space down there!
If I remove the Grid element, then the listView gets in "full screen mode". I mean, it reaches the bottom of the app.
How can I do this to make room for the input in the end of the app's window ? thank you
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I would like your help.
I have this setup:
This produces:
As you can see, there's a bunch of void space down there!
If I remove the Grid element, then the listView gets in "full screen mode". I mean, it reaches the bottom of the app.
How can I do this to make room for the input in the end of the app's window ?
thank you
The text was updated successfully, but these errors were encountered: