Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Configure Firebase Firestore settings with Flutter

I'm evaluating the Firestore Plugin for Flutter.

This snippet works as expected, it inserts a record into firestore when the floating button in pressed:

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

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Flutter Demo',
      theme: new ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: new MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => new _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  Firestore firestore;

  _MyHomePageState() {
    firestore = Firestore.instance;
  }

  void _addBoard() {
    setState(() {
      _counter++;
      firestore.collection("boards").document().setData({ 'name': 'mote_$_counter', 'descr': 'long descr $_counter' });
    });
  }

  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        title: new Text(widget.title),
      ),
      body: new Center(
        child: new Column(
         mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            new Text(
              'You have pushed the button this many times:',
            ),
            new Text(
              '$_counter',
              style: Theme.of(context).textTheme.display1,
            ),
          ],
        ),
      ),
      floatingActionButton: new FloatingActionButton(
        onPressed: _addBoard,
        child: new Icon(Icons.add),
      ), 
  }
}

Running with flutter run the console show the warning:

W/Firestore(31567): (0.6.6-dev) [Firestore]: The behavior for java.util.Date objects stored in Firestore is going to change AND YOUR APP MAY BREAK.
W/Firestore(31567): To hide this warning and ensure your app does not break, you need to add the following code to your app before calling any other Cloud Firestore methods:
W/Firestore(31567): 
W/Firestore(31567): FirebaseFirestore firestore = FirebaseFirestore.getInstance();
W/Firestore(31567): FirebaseFirestoreSettings settings = new FirebaseFirestoreSettings.Builder()
W/Firestore(31567):     .setTimestampsInSnapshotsEnabled(true)
W/Firestore(31567):     .build();
W/Firestore(31567): firestore.setFirestoreSettings(settings);
W/Firestore(31567): 
W/Firestore(31567): With this change, timestamps stored in Cloud Firestore will be read back as com.google.firebase.Timestamp objects instead of as system java.util.Date objects. So you will also need to update code expecting a java.util.Date to instead expect a Timest        

There is a way to configure the FirebaseFirestore instance and thus fix this issue with date settings?

like image 887
attdona Avatar asked Jun 30 '18 07:06

attdona


People also ask

How do I display firestore data in flutter?

To integrate Firestore into your application, there are a few steps to follow: Enable Firestore Database from the console. Write code to add data and fetch data from Firestore Database. Write code to show fetched data on UI.

How do I update my firestore data flutter?

Update Method final _db = FirebaseFirestore. instance; NoteModel noteToUpdate = NoteModel( title:"This is an Awesome Title", content:"This is the Content of the Note", ); await _db. collection("notes"). doc("doc-id").


1 Answers

The problem is resolved from cloud_firestore 0.8.2, first upgrade the dependency in pubspec.yaml to:

dependencies:
  cloud_firestore: ^0.8.2+1

Firestore::setting return a Future, so it must be invoked in an async function.

This is sufficient to make works the example code:

void main() async {
  final Firestore firestore = Firestore();
  await firestore.settings(timestampsInSnapshotsEnabled: true);

  runApp(new MyApp());
}

Then, at the time of actually adding your documents, you explicitly add a createdAt (or whatever you wanna call it) field, like so:

    Firestore.instance
        .collection('customer')
        .add({
      "name": customerNameController.text,
      "createdAt": FieldValue.serverTimestamp()
    }).then((res) { ...
like image 148
attdona Avatar answered Oct 06 '22 19:10

attdona