React-native-fast-image: requireNativeComponent: "FastImageView" was not found in the UIManager.

Created on 12 Jun 2020  路  10Comments  路  Source: DylanVann/react-native-fast-image

I am using react-native 0.62.2 ,
and it's

pod 'RNFastImage', :path => '../node_modules/react-native-fast-image'

also available in podlist file

but getting this issue.

bug

Most helpful comment

Came across the same working on the iOS Simulator. Running pod install and rebuilding the app fixed it for me.

All 10 comments

RN 0.62 has autolink functionality so you don't need add entry in pod

Came across the same working on the iOS Simulator. Running pod install and rebuilding the app fixed it for me.

Having the same issue, in Android 9 with Expo 38 and RN 38

I found that this package is not available in expo yet :(

https://expo.canny.io/feature-requests/p/add-react-native-fast-image

same for me

having the same issue on android, I'm not using Expo.

having the same issue on android, I'm not using Expo.

resolved by re-building app

I have the same issue here, I1m using Expo Bare Workflow.

make sure you reinstall podfile in ios folder

I'm also facing same issue,
tried everything
./MainApplication.java

import com.dylanvann.fastimage.FastImageViewPackage;

public class MainApplication extends Application implements ReactApplication {

  private final ReactNativeHost mReactNativeHost =
      new ReactNativeHost(this) {
        @Override
        public boolean getUseDeveloperSupport() {
          return BuildConfig.DEBUG;
        }

        @Override
        protected List<ReactPackage> getPackages() {
          @SuppressWarnings("UnnecessaryLocalVariable")
          List<ReactPackage> packages = new PackageList(this).getPackages();
          // Packages that cannot be autolinked yet can be added manually here, for example:
          // packages.add(new MyReactNativePackage());
          packages.add(new YellowMessengerModulePackage());
          packages.add(new FastImageViewPackage())
          return packages;
        }

        @Override
        protected String getJSMainModuleName() {
          return "index";
        }
      };
})
Was this page helpful?
0 / 5 - 0 ratings

Related issues

kkarmalkar picture kkarmalkar  路  4Comments

baba43 picture baba43  路  3Comments

ryoid picture ryoid  路  3Comments

mschipperheyn picture mschipperheyn  路  3Comments

pehagg picture pehagg  路  3Comments