app_luanch_handler 0.0.5 copy "app_luanch_handler: ^0.0.5" to clipboard
app_luanch_handler: ^0.0.5 copied to clipboard

App Luanch Handler that help user easy handle call back via app scheme

example/lib/main.dart

import 'package:app_luanch_handler/app_luanch_handler.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  final ValueNotifier<String> _result = ValueNotifier("Unknow");

  late AppLuanchHandler applauncher;

  @override
  void initState() {
    super.initState();
    applauncher = AppLuanchHandler(
        applyStatusFilter: true,
        onResult: (result) {
          _result.value = result;
          if (kDebugMode) {
            print("TAG main.dart $result");
          }
        });
  }

  void launchApp() {
    const token = "1683866796257673218";
    applauncher.launch(
        "https://link-uat.princebank.com.kh/sdk?orderNo=$token&appPkg=Y29tLnNvcGhvdW4uYXBwX2x1YW5jaF9oYW5kbGVyX2V4YW1wbGU=&scheme=bXlhcHA=");
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              ValueListenableBuilder<String>(
                valueListenable: _result,
                builder: (context, value, child) {
                  return Text(
                    value == "0" ? "$value= Success" : "$value= Failed",
                  );
                },
              ),
              ElevatedButton(
                onPressed: () {
                  launchApp();
                },
                child: const Text("Luanch"),
              ),
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
160
pub points
11%
popularity

Publisher

verified publishersophoun.com

App Luanch Handler that help user easy handle call back via app scheme

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, plugin_platform_interface, url_launcher

More

Packages that depend on app_luanch_handler