Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions examples/CustomElements/components/Bulbazavr.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ export default class Bulbazavr extends Component {
render() {
const bulbazavr = 'http://1.bp.blogspot.com/_rwVhHPI9dhQ/SPeGpxeQiCI/AAAAAAAAAoM/pyVMkLNJfY8/s400/002.gif';
return (
/* ---------------------------------------------------------
*
* Add Action when click image then direct to url : bulbazavr
*
* --------------------------------------------------------- */
<TouchableOpacity onPress={this.props.onPress}>
<Image
source={{ uri: bulbazavr }}
Expand Down
5 changes: 5 additions & 0 deletions examples/CustomElements/components/Charmander.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ export default class Left extends Component {
render() {
const charmander = 'http://oyster.ignimgs.com/mediawiki/apis.ign.com/pokemon-blue-version/d/d4/Charmander.gif';
return (
/* ---------------------------------------------------------
*
* Add Action when click image then direct to url : charmander
*
* --------------------------------------------------------- */
<TouchableOpacity onPress={this.props.onPress}>
<Image
source={{ uri: charmander }}
Expand Down