From 5d67167a4006cc090a5d8ad9aeed585863ab13bc Mon Sep 17 00:00:00 2001 From: "K. P. Sroka" Date: Wed, 31 Jan 2018 11:39:34 +0100 Subject: [PATCH] Fixing 'remote image' button example (#221) * fix: Updating uri link in ButtonExample (the current one gives 404 and no image displayed). * fix: Updating uri link in ButtonExample (svg doesn't work well). --- example/src/ButtonExample.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/example/src/ButtonExample.js b/example/src/ButtonExample.js index 5744043714..2e7e3aa019 100644 --- a/example/src/ButtonExample.js +++ b/example/src/ButtonExample.js @@ -21,7 +21,10 @@ class ButtonExample extends React.Component { }; render() { - const uri = { uri: 'https://facebook.github.io/react/img/logo_og.png' }; + const uri = { + // Callstack company avatar from github. + uri: 'https://avatars0.githubusercontent.com/u/17571969?v=3&s=400', + }; const source = require('../assets/chameleon.jpg'); const { theme: { colors: { background } } } = this.props; return (