main.dart 1.88 KB
Newer Older
Javohir Savriy's avatar
Javohir Savriy committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import 'dart:async';

import 'package:flutter/material.dart';
import 'package:myid/enums.dart';
import 'package:myid/myid.dart';
import 'package:myid/myid_config.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? _error;
  MyIdResult? _result;

  Future<void> init() async {
    String? error;
    MyIdResult? result;

    try {
      const clientId = 'client_id';
Javokhir's avatar
Javokhir committed
29
30
      const clientHash = 'client_hash';
      const clientHashId = 'client_hash_id';
Javohir Savriy's avatar
Javohir Savriy committed
31
32
33

      final myIdResult = await MyIdClient.start(
        config: MyIdConfig(
Javokhir's avatar
Javokhir committed
34
            // PROVIDE CLIENT_ID, CLIENT_HASH and CLIENT_HASH_ID. YOU'VE GOT FROM YOUR BACKEND
Javohir Savriy's avatar
Javohir Savriy committed
35
            clientId: clientId,
Javokhir's avatar
Javokhir committed
36
37
            clientHash: clientHash,
            clientHashId: clientHashId,
Javokhir's avatar
Javokhir committed
38
            buildMode: MyIdBuildMode.PRODUCTION,
Javohir Savriy's avatar
Javohir Savriy committed
39
40
41
        )
      );

Javokhir's avatar
Javokhir committed
42
      error = null;
Javohir Savriy's avatar
Javohir Savriy committed
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
      result = myIdResult;
    } catch (e) {
      error = e.toString();
      result = null;
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _error = error;
      _result = result;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('MyID Sample'),
        ),
        body: Center(
          child: Column(
            children: [
              MaterialButton(
                onPressed: init,
                child: const Text('Start SDK'),
              ),
              Text(_result?.code ?? _error ?? 'Failure'),
            ],
          ),
        ),
      ),
    );
  }
}