FLUTTER ECOSYSTEM

perpetio/clubhouse

使用 Firebase/Firestore 和 Agora 服务编写的 Clubhouse 克隆应用,采用 Flutter 开发。

俱乐部 项目封面
Stars
97
Forks
35
最近推送(UTC)
2023年4月2日
项目状态
未归档
Perpetio GitHub avatar
GITHUB Organization

Perpetio ↗

Boost your business and grow your audience with a slick mobile app

Tallinn, Estonia
语言DartRubySwiftKotlinObjective-C

技术话题

关联插件与示例

使用的依赖

依赖清单 10 项

App 分类

原始 README

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

展开 / 收起项目 README

Clubhouse

Clubhouse clone written in Flutter using Firebase/Firestore and Agora services.

See our tutorial posts:

Part 1 - Setup Flutter project and create Clubhouse clone app UI

Part 2 - User login and registration with Firebase

Part 3 - Voice calling functionality with Agora

Preview

https://raw.githubusercontent.com/perpetio/clubhouse/HEAD/assets/screenshots/1.gif https://raw.githubusercontent.com/perpetio/clubhouse/HEAD/assets/screenshots/2.gif

Dependencies

  • agora_rtc_engine: https://pub.dev/packages/agora_rtc_engine

  • permission_handler: https://pub.dev/packages/permission_handler

  • firebase_auth: https://pub.dev/packages/firebase_auth

  • cloud_firestore: https://pub.dev/packages/cloud_firestore

  • country_code_picker : https://pub.dev/packages/country_code_picker

  • pull_to_refresh : https://pub.dev/packages/pull_to_refresh

Getting started

1. Setup Flutter.
2. Clone the repo.
$ git clone https://github.com/perpetio/clubhouse.git
3. Run flutter pub get.
4. Setup the Firebase App. Follow instructions:
  1. Create your own Firebase project.

  2. Once your Firebase instance is created, you'll need to enable Phone authentication.

  • Go to the Firebase Console for your new instance.
  • Click "Authentication" in the left-hand menu
  • Click the "sign-in method" tab
  • Click "Phone" and enable it
  1. Enable the Firestore Database
  • Go to the Firebase Console
  • Click "Firestore Database" in the left-hand menu
  • Click the Cloudstore "Create Database" button
  • Select "Start in test mode" and "Enable"
  1. Add the google-services.json to the folder android/app (for Android) and GoogleService-Info.plist into the root of your Xcode project to all targets(for IOS).
5. Setup the Agora. Follow instructions:
  • Create a developer account at agora.io. Once you finish the sign-up process, you are redirected to the dashboard
  • Navigate in the dashboard tree on the left to Projects > Project List.
  • Find your app ID on the Agora dashboard and copy it to your clipboard. Then, generate a temporary token from the Agora console page.
  • Replace the const in the settings.dart file in the /lid/core folder.
const APP_ID = '';
const Token = '';
const channelName = '';

6. Run the project using flutter run or using your IDE's tools.