flutter_firebase_chat_core 1.6.7 copy "flutter_firebase_chat_core: ^1.6.7" to clipboard
flutter_firebase_chat_core: ^1.6.7 copied to clipboard

Actively maintained, community-driven Firebase BaaS for chat applications with an optional chat UI.

example/lib/main.dart

import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';

import 'firebase_options.dart';
import 'rooms.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await Firebase.initializeApp(
    options: DefaultFirebaseOptions.currentPlatform,
  );
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) => MaterialApp(
        title: 'Firebase Chat',
        theme: ThemeData(
          primarySwatch: Colors.blue,
          visualDensity: VisualDensity.adaptivePlatformDensity,
        ),
        home: const RoomsPage(),
      );
}
293
likes
140
pub points
94%
popularity

Publisher

verified publisherflyer.chat

Actively maintained, community-driven Firebase BaaS for chat applications with an optional chat UI.

Homepage
Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

cloud_firestore, firebase_auth, firebase_core, flutter, flutter_chat_types, meta

More

Packages that depend on flutter_firebase_chat_core