uaepass 0.1.0
uaepass: ^0.1.0 copied to clipboard
UAE PASS service allows using a mobile device as a secure form of identification. UAE PASS automates and simplifies managing digital identity in mobile devices for users and can be used to - Seamless [...]
uaepass #

Installation #
In your pubspec.yaml file within your Flutter Project:
dependencies:
flutter_uaepass: <latest_version>
iOS #
Add any URL schemes passed to info.plist
Example:
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>deeplink.flutter.dev</string>
<key>CFBundleURLSchemes</key>
<array>
<string>{custom App Scheme}</string>
</array>
</dict>
</array>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>uaepass</string> // for Production
<string>uaepassstg</string> // for Staging
</array>
Android #
Coming Soon
Use it #
import 'package:uaepass/uaepass.dart';
UaepassLoginButton();
Example #
import 'package:flutter/material.dart';
import 'package:uaepass/uaepass.dart';
void main() {
Uaepass.init(env: UaePassEnv.stg, appScheme: '{custom App Scheme}');
runApp(
const MaterialApp(
home: Material(
child: Center(
child: UaepassLoginButton(),
),
),
),
);
}