applaudiq_embed 1.3.0 copy "applaudiq_embed: ^1.3.0" to clipboard
applaudiq_embed: ^1.3.0 copied to clipboard

Embed the Applaud IQ recognition portal in a Flutter app (Android + iOS) with auto / manual login and native SSO, in a hardened WebView. Mirrors the iOS / Android / React Native / Web SDKs.

example/lib/main.dart

// Minimal example for `applaudiq_embed`. A full runnable example (manual + auto login + SSO, with
// a mint client and native scheme registration) lives in the applaudiq-sdk-example repo under
// native-integration/flutter.
import 'package:applaudiq_embed/applaudiq_embed.dart';
import 'package:flutter/material.dart';

void main() => runApp(const ExampleApp());

class ExampleApp extends StatelessWidget {
  const ExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Applaud IQ embed')),
        body: const ApplaudIQEmbed(
          // 👉 Replace with your publishable key + portal origin (HR portal → Embed SDK Keys / Admin).
          config: EmbedConfig(
            key: 'pk_live_xxxxxxxxxxxxxxxxxxxxxxxx',
            ssoCallback: 'myapp://sso-callback',
          ),
          mode: ApplaudIQMode.manual,
        ),
      ),
    );
  }
}
0
likes
130
points
479
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Embed the Applaud IQ recognition portal in a Flutter app (Android + iOS) with auto / manual login and native SSO, in a hardened WebView. Mirrors the iOS / Android / React Native / Web SDKs.

Repository (GitHub)
View/report issues

Topics

#webview #sso #embed #authentication

License

MIT (license)

Dependencies

flutter, flutter_web_auth_2, path_provider, share_plus, url_launcher, webview_flutter, webview_flutter_android, webview_flutter_wkwebview

More

Packages that depend on applaudiq_embed