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

A flutter package which will help you to add google meet in your projects and also help you to create, modify and delete calender events and notify the attendee

example/lib/main.dart

import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:google_meet_example/screens/button.dart';

Future<void> main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await Firebase.initializeApp();
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Events Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.teal,
        appBarTheme:
            const AppBarTheme(systemOverlayStyle: SystemUiOverlayStyle.dark),
      ),
      home: const Button(),
    );
  }
}
20
likes
130
pub points
68%
popularity

Publisher

unverified uploader

A flutter package which will help you to add google meet in your projects and also help you to create, modify and delete calender events and notify the attendee

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

firebase_auth, flutter, google_sign_in, googleapis, googleapis_auth, http, platform_metadata

More

Packages that depend on google_meet_sdk