google_sign_in_all_platforms_desktop 0.0.2
google_sign_in_all_platforms_desktop: ^0.0.2 copied to clipboard
Desktop implementation of google_sign_in_all_platforms
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(),
);
}
}