You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public ProgressBarModule(ReactApplicationContext context) {
// Pass in the context to the constructor and save it so you can emit events
// https://facebook.github.io/react-native/docs/native-modules-android.html#the-toast-module
super(context);
reactContext = context;
}
and there:
@Override
public Map<String, Object> getConstants() {
// Export any constants to be used in your native module
// https://facebook.github.io/react-native/docs/native-modules-android.html#the-toast-module
final Map<String, Object> constants = new HashMap<>();
return constants;
}
Could you help me?
The text was updated successfully, but these errors were encountered:
Hi guys, Anyone has an example that I could follow? I have tried to combine with https://reactnative.dev/docs/native-modules-android documentation, but I don't know how to do with other library.
I don't understand what I should put in:
and there:
Could you help me?
The text was updated successfully, but these errors were encountered: