google_sign_in_web 0.12.4 copy "google_sign_in_web: ^0.12.4" to clipboard
google_sign_in_web: ^0.12.4 copied to clipboard

Platformweb
unlisted

Flutter plugin for Google Sign-In, a secure authentication system for signing in with a Google account on Android, iOS and Web.

example/lib/main.dart

// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:flutter/material.dart';

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

/// App for testing
class MyApp extends StatefulWidget {
  /// Default Constructor
  const MyApp({super.key});

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

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return const Text('Testing... Look at the console output for results!');
  }
}
74
likes
130
pub points
99%
popularity

Publisher

verified publisherflutter.dev

Flutter plugin for Google Sign-In, a secure authentication system for signing in with a Google account on Android, iOS and Web.

Repository (GitHub)
View/report issues
Contributing

Topics

#authentication #google-sign-in

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, flutter_web_plugins, google_identity_services_web, google_sign_in_platform_interface, http, web

More

Packages that depend on google_sign_in_web