Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

create guide for navbar #218

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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