FLUTTER ECOSYSTEM

FirebaseExtended/flutterfire_desktop

一个早期阶段的、实验性的纯 Dart 实现的 Firebase SDK。

flutterfire_desktop 项目封面
Stars
414
Forks
62
最近推送(UTC)
2026年5月13日
项目状态
未归档
FirebaseExtended GitHub avatar
GITHUB Organization

FirebaseExtended ↗

Projects that are not officially staffed by Googlers but may be of use to Firebase developers. Volunteers are welcome to contribute and maintain.

San Francisco, CA官方网站 ↗
语言DartC++CMakeCRubySwift

技术话题

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

Firebase's Dart SDK

Chat on Discord

The Dart SDK allows Flutter and Dart apps to consume Firebase services.

It is an early-stage, experimental pure-Dart implementation of Firebase SDKs, without wrapping the existing Android, iOS, web, or C++ SDKs. The initial work is focused on supporting Firebase for Linux and Windows platforms.

Usage

To use this plugin, add the following dependencies to your app's pubspec.yaml file, along with the main plugin:

dependencies:
  firebase_auth: ^3.1.5
  firebase_auth_desktop: ^0.1.1-dev.0
  firebase_core: ^1.9.0
  firebase_core_desktop: ^0.1.1-dev.0

Firebase App Initialization

Unlike the Firebase Flutter SDK, the Firebase initialization is done from Dart code, which means no additional config files are required.

DEFAULT app

To initialize the default app, provide only options without a name.

await Firebase.initializeApp(
  options: const FirebaseOptions(
    apiKey: '...',
    appId: '...',
    messagingSenderId: '...',
    projectId: '...',
  )
);
Secondary app
await Firebase.initializeApp(
  name: 'SecondaryApp',
  options: const FirebaseOptions(
    apiKey: '...',
    appId: '...',
    messagingSenderId: '...',
    projectId: '...',
  )
);

Contributing

This is a community project, contributions to help it progress faster are welcome:

  1. Before starting, please read the contribution guide of FlutterFire.
  2. Refer to the projects board to see the current progress & planned future work.