fable-import-react-native-barcodescanner

Fable bindings for React Native Barcode Scanner

Usage no npm install needed!

<script type="module">
  import fableImportReactNativeBarcodescanner from 'https://cdn.skypack.dev/fable-import-react-native-barcodescanner';
</script>

README

fable-import-react-native-barcodescanner

Fable bindings for React Native Barcode Scanner

Installation

Install fable-import-react-native and follow the instructions for that package.

Follow install instructions for react-native-barcodescanner and then:

$ npm install --save-dev fable-import-react-native-barcodescanner

Usage

Follow instructions for react-native-barcodescanner.

In F# project (.fsproj)

  <ItemGroup>
    <Compile Include="node_modules/able-import-react-native-barcodescanner/Fable.Import.ReactNativeBarcodeScanner.fs" />
    <Compile Include="node_modules/able-import-react-native-barcodescanner/Fable.Helpers.ReactNativeBarcodeScanner.fs" />
  </ItemGroup>

In F# script (.fsx)

#load "node_modules/able-import-react-native-barcodescanner/Fable.Import.ReactNativeBarcodeScanner.fs"
#load "node_modules/able-import-react-native-barcodescanner/Fable.Helpers.ReactNativeBarcodeScanner.fs"

open Fable.Core
open Fable.Import
module R = Fable.Helpers.React
module RN = Fable.Import.ReactNative
open Fable.Helpers.ReactNativeBarcodeScanner
open Fable.Helpers.ReactNativeBarcodeScanner.Props

...

barcodeScanner [BarcodeScannerProperties.OnBarCodeRead (fun result -> ... )]