Tyler Benton

Results 10 comments of Tyler Benton

Another example is if you have it defined on a class, that uses props to determine styles ```js class MyComponent extends Component { styles = StyleSheet.create({ something: { awesome: this.props.isAwesome...

It is, I figured out how to customize it.

The ability to add a sub group to give the ability to organize a large set of groups. For example if you have 10 `@function`'s that are dealing with numbers,...

here's a workaround for this bug until it get's fixed ```js zoom .on('close', ({ target }) => { target.setAttribute('srcset', target.getAttribute('data-zoom-srcset')) }) on('open', ({ target }) => { // `srcset` is...

the `onLoad` function is just passed down to the `react-native` Image component so the issue is more likely with react native it's self. That being said there's a workaround for...

This seemed to solve the problem for our app by adding this to the Podfile. Hope this helps someone with the pending apple requirement starting in April to build on...

on another project I also had to add these to the Podfile. Or you can go into xcode and change it in the build settings. This allowed me to get...

The above code worked for opening it, however if you tried to swipe close the item would have a glitch and close weird because the state didn't match up with...

From what you're saying it sounds like you're trying to render multiple Swipeables in the same component and you can't set the ref to the same thing (`this.swipeable`) otherwise the...

@soyuka I'll look into why the test is failing next week unless you know off hand why it's failing.