sign_in_with_apple_js 1.0.1 sign_in_with_apple_js: ^1.0.1 copied to clipboard
A Dart wrapper for the 'Sign in with Apple JS' framework with helper methods to simplify usage.
import 'package:sign_in_with_apple_js/apple_id_auth_js.dart';
import 'package:sign_in_with_apple_js/sign_in_with_apple_js.dart';
void main() {
/// Initialize
initSignInWithApple(ClientConfigI(
clientId: '', // TODO:
scope: 'name email',
redirectURI: '', // TODO:
usePopup: true,
));
}