Gary Tokman

Results 65 comments of Gary Tokman

@ou2s +1 interested in this example!

An easy solution to this problem is: ``` activityIndicator.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activateConstraints([ activityIndicator.centerXAnchor.constraintEqualToAnchor(view.centerXAnchor), activityIndicator.centerYAnchor.constraintEqualToAnchor(view.centerYAnchor) ]) ```

@byCedric Is it possible to see a preview comment for EAS update? ``` - name: Install dependencies run: yarn install --immutable - name: Generate Bundle run: expo export --experimental-bundle -...

Would be great to merge this @expo-community. I was able to fix it by installing `yarn add@brettdh/standard-version-expo --dev` then updating my .versionrc.js ``` { filename: 'ios//Info.plist', updater: require.resolve('@brettdh/standard-version-expo/ios/native/app-version'), }, {...

I'm also seeing an intermittent crash. @MingaudasVagonis I don't think that `autoFocus` is the reason. I'm not using that prop.

@chrispader do you have a video example of what the indicator looks like? Wondering what the use case would be!

@chrispader the live pulse looks super nice!

Have you tried integrating a gradient? Saw some discussion here https://github.com/margelo/react-native-graph/issues/11#issuecomment-1119861429.

I solved this with a library I made for images: https://github.com/candlefinance/faster-image ``` const AnimatedImage = Animated.createAnimatedComponent(FasterImageView) const animatedProps = useAnimatedProps(() => { return { url: image.value, } }) ```