zbtang / React-Native-ViewPager

ViewPager and Indicator component for react-native on both android and ios.
950 stars 276 forks source link

Is there a way to use uri instead of source in iconSource? #157

Open Mr-Ingram opened 5 years ago

Mr-Ingram commented 5 years ago
let tabs = [{
    text: '${this.state.tags.toLowerCase()}',
    iconSource: 'https://www.exmaple.com/img/cookies.png', <-- this does not work
    selectedIconSource: require("../img/bluep.png")

}];

I tried to use this: iconSource: uri: 'https://www.exmaple.com/img/cookies.png', but I get a transform error.