「FlutterFire」の版間の差分
ナビゲーションに移動
検索に移動
(→macOS) |
(→macOS) |
||
29行目: | 29行目: | ||
=====[https://firebase.flutter.dev/docs/installation/macos macOS]===== | =====[https://firebase.flutter.dev/docs/installation/macos macOS]===== | ||
---- | ---- | ||
− | + | # GoogleService-Info.plist のダウンロード | |
− | + | # [[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
- GoogleService-Info.plist のダウンロード
- XCodeでmacos/{projectName}.xcworkspace を開く
Web
初期化
- Firebaseのサービスを使用する前に、FlutterFireを初期化する必要があります
- 初期化ステップは非同期なので完了するまではFlutterFire関連の使用を禁止する必要があります。
- FlutterFireを初期化するには、FirebaseクラスのinitializeAppメソッドを呼び出します
© 2006 矢木浩人