domain_verification_manager 0.0.1 copy "domain_verification_manager: ^0.0.1" to clipboard
domain_verification_manager: ^0.0.1 copied to clipboard

outdated

Use the DomainVerificationManager API for Android from Flutter.

example/lib/main.dart

import 'dart:async';

import 'package:domain_verification_manager/domain_verification_manager.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

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

class _MyAppState extends State<MyApp> {
  String _domainStateVerified = 'Unknown';
  String _domainStateSelected = 'Unknown';
  String _domainStateNone = 'Unknown';

  @override
  void initState() {
    super.initState();
    getDomainStageVerified();
    getDomainStateSelected();
    getDomainStateNone();
  }

  Future<void> getDomainStageVerified() async {
    String result;
    try {
      result = (await DomainVerificationManager.domainStageVerified).toString();
    } on PlatformException {
      result = 'Failed to get domainStageVerified';
    }
    if (!mounted) {
      _domainStateVerified = result;
      return;
    }

    setState(() {
      _domainStateVerified = result;
    });
  }

  Future<void> getDomainStateSelected() async {
    String result;
    try {
      result = (await DomainVerificationManager.domainStageSelected).toString();
    } on PlatformException {
      result = 'Failed to get domainStageSelected';
    }
    if (!mounted) {
      _domainStateSelected = result;
      return;
    }

    setState(() {
      _domainStateSelected = result;
    });
  }

  Future<void> getDomainStateNone() async {
    String result;
    try {
      result = (await DomainVerificationManager.domainStageNone).toString();
    } on PlatformException {
      result = 'Failed to get domainStageNone';
    }
    if (!mounted) {
      _domainStateNone = result;
      return;
    }

    setState(() {
      _domainStateNone = result;
    });
  }

  Future<void> domainRequest() async {
    await DomainVerificationManager.domainRequest();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Domain Veriification Manager'),
        ),
        body: Center(
          child: Column(
            children: [
              const SizedBox(height: 50.0),
              Text(
                'Verified:\n$_domainStateVerified\n\n',
                textAlign: TextAlign.center,
              ),
              Text(
                'Not verified, but user associated the link:\n$_domainStateSelected\n\n',
                textAlign: TextAlign.center,
              ),
              Text(
                'Not verified and not assiociated to the app:\n$_domainStateNone\n\n',
                textAlign: TextAlign.center,
              ),
              const SizedBox(height: 12.0),
              ElevatedButton(
                onPressed: domainRequest,
                child: const Text('Request'),
              ),
            ],
          ),
        ),
      ),
    );
  }
}
3
likes
0
pub points
71%
popularity

Publisher

verified publisherglennruysschaert.com

Use the DomainVerificationManager API for Android from Flutter.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on domain_verification_manager