react-native-vision-list
Version:
The fastest React Native List component.
19 lines (16 loc) • 751 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.VisionList = void 0;
var _reactNative = require("react-native");
const LINKING_ERROR = `The package 'react-native-vision-list' doesn't seem to be linked. Make sure: \n\n` + _reactNative.Platform.select({
ios: "- You have run 'pod install'\n",
default: ''
}) + '- You rebuilt the app after installing the package\n' + '- You are not using Expo managed workflow\n';
const ComponentName = 'VisionList';
const VisionList = _reactNative.UIManager.getViewManagerConfig(ComponentName) != null ? (0, _reactNative.requireNativeComponent)(ComponentName) : () => {
throw new Error(LINKING_ERROR);
};
exports.VisionList = VisionList;
//# sourceMappingURL=index.js.map