-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.dart
105 lines (94 loc) · 3.24 KB
/
main.dart
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:sign_in_with_apple_native/sign_in_with_apple_native.dart';
import 'package:sign_in_with_apple_native/sign_in_with_apple_native_button.dart';
import 'package:sign_in_with_apple_native/types/authorization_scope.dart';
import 'package:sign_in_with_apple_native/types/credential_state.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
bool _isAvailable = false;
final _signInWithAppleNativePlugin = SignInWithAppleNative();
@override
void initState() {
super.initState();
initPlatformState();
_signInWithAppleNativePlugin.onAuthenticationRevoked.listen((event) {
setState(() {});
});
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
bool isAvailable;
// Platform messages may fail, so we use a try/catch PlatformException.
// We also handle the message potentially returning null.
try {
isAvailable = await _signInWithAppleNativePlugin.isAvailable();
} on PlatformException {
isAvailable = false;
}
// 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(() {
_isAvailable = isAvailable;
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Column(children: [
Text('Is "Sign In with Apple" available: $_isAvailable\n'),
FutureBuilder(
future: _signInWithAppleNativePlugin.credentialState,
builder: (context, snapshot) {
if (snapshot.hasData) {
if (snapshot.data != CredentialState.authorized) {
return SizedBox(
width: MediaQuery.of(context).size.width * 0.8,
height: 60,
child: SignInWithAppleNativeButton(
onPressed: _authorize,
),
);
}
return Text('Credential state: ${snapshot.data}');
} else if (snapshot.hasError) {
return Text('Credential state: ${snapshot.error}');
} else {
return const Text('Credential state: loading...');
}
}),
]),
),
),
);
}
Future<void> _authorize() async {
try {
final authorizationResult = await _signInWithAppleNativePlugin.authorize(
requestedScopes: [
AuthorizationScope.email,
AuthorizationScope.fullName,
],
);
print('authorizationResult: ${authorizationResult.idToken}');
setState(() {});
} catch (e) {
print('authorizationResult: empty');
}
}
}