indivisable

Results 6 comments of indivisable

I temporarily fixed the layout by adjusting this code in **Pulse.js**: > marginLeft: -pulseMaxSize-12, > marginTop: -pulseMaxSize/2,

@esbenp Yes it should be aligned to center point, I'll be looking into the dynamic text sizing in next few days I'll let you know what I discover.

After some research we have a few ways we could handle this: Disable Font Scaling https://facebook.github.io/react-native/docs/text.html#allowfontscaling `Text.defaultProps.allowFontScaling=false` Or using Pixel Ratio: https://facebook.github.io/react-native/docs/pixelratio.html#getfontscale Examples: - http://stackoverflow.com/questions/32947036/how-to-set-font-size-for-different-ios-devices-in-react-native - http://stackoverflow.com/questions/33628677/react-native-responsive-font-size The latter method...

First we setup our state data: ``` constructor() { super() this.state = { favorites_data: [{... Your JSON ...}] }; ... ``` Then added a function to add children: ``` addChildItem(itemData){...

@ollija Thank you, that is issue I was experiencing (removing only last item), however when I took off the key value when I map, only one single icon renders, instead...

Hrmm not sure I fully understand, Do you mean that the internal index and external should have different IDs? And thus you target this ID instead of the internal index?...