| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「FlutterFire」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
29行目: 29行目:
 
=====[https://firebase.flutter.dev/docs/installation/macos macOS]=====
 
=====[https://firebase.flutter.dev/docs/installation/macos macOS]=====
 
----
 
----
+ GoogleService-Info.plist のダウンロード
+
# GoogleService-Info.plist のダウンロード
+ [[XCode]]でmacos/{projectName}.xcworkspace を開く
+
# [[XCode]]でmacos/{projectName}.xcworkspace を開く
  
 
=====[https://firebase.flutter.dev/docs/installation/web Web]=====
 
=====[https://firebase.flutter.dev/docs/installation/web Web]=====

2021年7月14日 (水) 11:59時点における版

| Flutter |

FlutterFire

Overview


Install


  • Migration
  • Firebase のサービスを利用する前に、まず firebase_core プラグインをインストールする必要があります。
  • このプラグインは、アプリケーションを Firebase に接続する役割を果たします。
  • このプラグインをpubspec.yamlファイルに追加します。

pubspec.yaml

dependencies:
  flutter:
    sdk: flutter
  firebase_core: "^1.3.0"
$ flutter pub get

Platform


Android
iOS
macOS

  1. GoogleService-Info.plist のダウンロード
  2. XCodeでmacos/{projectName}.xcworkspace を開く
Web

初期化


  • Firebaseのサービスを使用する前に、FlutterFireを初期化する必要があります
  • 初期化ステップは非同期なので完了するまではFlutterFire関連の使用を禁止する必要があります。
  • FlutterFireを初期化するには、FirebaseクラスのinitializeAppメソッドを呼び出します