you can use Actions with props
onPress={() => Actions.com2({title: 'some title'})}
and then in com2 you can retrieve the data like that
this.props.title
or you can use push property
Actions.push('com2',{title: 'some title' } );
then retrieve it in com2 also like that
this.props.title