google_sign_in_all_platforms_desktop 0.0.2 copy "google_sign_in_all_platforms_desktop: ^0.0.2" to clipboard
google_sign_in_all_platforms_desktop: ^0.0.2 copied to clipboard

Desktop implementation of google_sign_in_all_platforms

example/lib/main.dart

import 'package:example/home.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData.dark(useMaterial3: true),
      home: const HomeScreen(),
    );
  }
}