Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

useNativeDriver warning when using animated markers #3483

Closed
liamlows opened this issue Jun 26, 2020 · 7 comments
Closed

useNativeDriver warning when using animated markers #3483

liamlows opened this issue Jun 26, 2020 · 7 comments

Comments

@liamlows
Copy link
Contributor

Bug report

Summary

When using React Native v0.62, a consistent warning will generate when using an animated region and animated marker. The warning (seen below) can be suppressed on iOS by setting the option useNativeDriver: false in AnimatedRegion.js.

See https://reactnative.dev/blog/2017/02/14/using-native-driver-for-animated#how-do-i-use-this-in-my-app

Environment info

react-native info output:

Animated: `useNativeDriver` was not specified. This is a required option and must be explicitly set to `true` or `false`

Library version: 0.27.1

Steps to reproduce

  1. Create an animated marker with a new AnimatedRegion and utilize as a coordinate on map

Describe what you expected to happen:
N/A

Reproducible sample code

New animated region

coordinate: new AnimatedRegion({
        latitude: 37.785834,
        longitude: -122.406417,
        latitudeDelta: 0,
        longitudeDelta: 0
      })

JSX for Map...

        <MapView
          style={styles.map}
          showUserLocation
          followUserLocation
          loadingEnabled
          region={this.getMapRegion()}
        >
          <Marker.Animated
            ref={marker => {
              this.marker = marker;
            }}
            coordinate={this.state.coordinate}
          />
        </MapView>
@dl-husky73
Copy link

Any updates here? I am having same issues...

@liamlows
Copy link
Contributor Author

Any updates here? I am having same issues...

I submitted a PR to fix it but it seems to fail the ci checks because of a yarn issue. I'll try to fix and resubmit and hopefully they will merge. To fix it though take a look above where I mention how to suppress the warning/issue.

@liamlows
Copy link
Contributor Author

liamlows commented Jul 20, 2020

fix was merged to master! 😄 See PR above...

@dl-husky73
Copy link

Awesome, thx!

@viscardo
Copy link

viscardo commented Jan 2, 2021

It is still not working for me using "react-native": "~0.63.3", "react-native-maps": "^0.27.1"

@shoonne
Copy link

shoonne commented Feb 22, 2021

same for me, still getting this warning every second

@liamlows
Copy link
Contributor Author

same for me, still getting this warning every second

Take a look at my summary paragraph above, I explained how to suppress it by changing one line of code in the package's folder in node-modules.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants