Posts by Iury Brasileiro • 11 points
3 posts
-
-1
votes2
answers38
viewsA: How to make continuous increment with React Native Touchable?
Hello, Touchableopacity and Touchablewithoutfeedback have the options of onPressIn and onPressOut, I believe this will help solve the problem. You can have a state controlling if the button is still…
-
1
votes1
answer38
viewsA: Global styles with Styled-Components
I believe that a satisfactory solution would be to create a Theme and use in Styles-Components. So imagine you have a Heme like this export default { colors: { primary: '#000', } } using the Styled…
-
0
votes1
answer43
viewsA: Images with Uri from the React Native API
Hello I believe that the resizeMode solve your problem, the accepted options are: cover, contain, stretch, repeat, center. The default value is: cover…