formx_sdk_flutter

Last updated:

0 purchases

formx_sdk_flutter Image
formx_sdk_flutter Images
Add to Cart

Description:

formx sdk flutter

formx_sdk_flutter #
Using FormX SDK within Flutter application.
Platform Support #



Android
iOS
MacOS
Web
Linux
Windows




✅(SDK 26+)
✅ (iOS 14.0+)







Installation #
In the dependencies: section of your pubspec.yaml, add the following line:
dependencies:
formx_sdk_flutter: ^1.0.2
copied to clipboard
Setup #

Android

Set the minSdkVersion in android/app/build.gradle:

android {
defaultConfig {
minSdkVersion 26
}
}
copied to clipboard

Replace base activity with FlutterFragmentActivity

class MainActivity: FlutterFragmentActivity() {
}
copied to clipboard


iOS

Update Podfile with:

target 'Runner' do

....skiped...

pod 'FormX', :git => 'https://github.com/oursky/formx-sdk.git', tag: '0.3.0'

....skiped...
copied to clipboard

Set minimum deployments to 14.0


Sample Usage #
FormXCameraView #
A native camera view to detect documents

Obtain camera permission:

To use FormXCameraView, Camera permission must be granted. Recommend to use flutter plugin like permission_handler to handle it.

Using FormXCameraView widget in flutter app:

Scaffold(
body: _cameraPermissionStatus == PermissionStatus.granted
? FormXCameraView(
controller: _controller,
onClose: _onCloseCamera,
onCaptured: _onCaptured,
onCaptureError: _onCaptureError,
)
...
)
copied to clipboard
For complete tutorial please refer to example app doc

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.