@nativescript-community/ui-cameraview
Version:
A CameraView allowing custom live processing for NativeScript
12 lines • 344 B
JavaScript
import { CameraView as NativeCameraView } from '..';
import '@vue/runtime-core';
const CameraViewPlugin = {
install(app) {
app.registerElement('CameraView', () => NativeCameraView, {
viewFlags: 8,
overwriteExisting: true
});
}
};
export default CameraViewPlugin;
//# sourceMappingURL=index.js.map