Save string from firestore to variableStream builder from firestore to flutterUsing Stream Building with a specific Firestore documentFlutter FireStoreHow do you get the document id after adding document in Cloud Firestore in DartFlutter Firestore NoSuchMethodErrorFlutter/Dart: save data in different documents in firestoreFirestore snapshots.map(_transform) has no data in StreamBuilderFlutter: Firebase auth and Firestore snapshot streamHow to retrieve specific user details from firestore with flutterReading two streams from Cloud Firestore and merging the streams
To what degree did the Supreme Court limit Boris Johnson's ability to prorogue?
If someone asks a question using “quién”, how can one shortly respond?
How to identify whether a publisher is genuine or not?
Why most footers have a background color has a divider of section?
How is the Apple Watch ECG disabled in certain countries?
Sci-fi movie with one survivor and an organism(?) recreating his memories
Was the ruling that prorogation was unlawful only possible because of the creation of a separate supreme court?
If a spaceship ran out of fuel somewhere in space between Earth and Mars, does it slowly drift off to the Sun?
What organs or modifications would be needed to have hairy fish?
As a team leader is it appropriate to bring in fundraiser candy?
Neighbouring numbers summing to a prime
How to study endgames?
How many space launch vehicles are under development worldwide?
Worlds with different mathematics and logic
Can you cure a Gorgon's Petrifying Breath before it finishes turning a target to stone?
A word that refers to saying something in an attempt to anger or embarrass someone into doing something that they don’t want to do?
Is it ok if I haven't decided my research topic when I first meet with a potential phd advisor?
Avoiding dust scattering when you drill
GPLv3 forces us to make code available, but to who?
I transpose the source code, you transpose the input!
About non-FTL travel and realitivistic effect for a hard sci fi novel
Why isn't there armor to protect from spells in the Potterverse?
Difference between two vector layer
Garage door sticks on a bolt
Save string from firestore to variable
Stream builder from firestore to flutterUsing Stream Building with a specific Firestore documentFlutter FireStoreHow do you get the document id after adding document in Cloud Firestore in DartFlutter Firestore NoSuchMethodErrorFlutter/Dart: save data in different documents in firestoreFirestore snapshots.map(_transform) has no data in StreamBuilderFlutter: Firebase auth and Firestore snapshot streamHow to retrieve specific user details from firestore with flutterReading two streams from Cloud Firestore and merging the streams
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to get a value from firestore and save it to a variable in flutter. I tried using StreamBuilder, but since i am not building a widget it does not work.
To clarify my problem, I am trying to get a url from a firestore document and then open it when i press a button in the app.
I also tried to adapt code i found in another question, but that returns null.
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
var data;
docRef.get().then((datasnapshot)
data = datasnapshot.data['url'];
);
return data;
The collection is called information, the document pdf, and the field url
dart
add a comment
|
I am trying to get a value from firestore and save it to a variable in flutter. I tried using StreamBuilder, but since i am not building a widget it does not work.
To clarify my problem, I am trying to get a url from a firestore document and then open it when i press a button in the app.
I also tried to adapt code i found in another question, but that returns null.
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
var data;
docRef.get().then((datasnapshot)
data = datasnapshot.data['url'];
);
return data;
The collection is called information, the document pdf, and the field url
dart
add a comment
|
I am trying to get a value from firestore and save it to a variable in flutter. I tried using StreamBuilder, but since i am not building a widget it does not work.
To clarify my problem, I am trying to get a url from a firestore document and then open it when i press a button in the app.
I also tried to adapt code i found in another question, but that returns null.
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
var data;
docRef.get().then((datasnapshot)
data = datasnapshot.data['url'];
);
return data;
The collection is called information, the document pdf, and the field url
dart
I am trying to get a value from firestore and save it to a variable in flutter. I tried using StreamBuilder, but since i am not building a widget it does not work.
To clarify my problem, I am trying to get a url from a firestore document and then open it when i press a button in the app.
I also tried to adapt code i found in another question, but that returns null.
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
var data;
docRef.get().then((datasnapshot)
data = datasnapshot.data['url'];
);
return data;
The collection is called information, the document pdf, and the field url
dart
dart
asked Mar 28 at 18:18
Hannes HultergårdHannes Hultergård
426 bronze badges
426 bronze badges
add a comment
|
add a comment
|
2 Answers
2
active
oldest
votes
This method will return null because you are not waiting for the get() future to return before you return data. docRef.get() is a Future, so it will execute asychronously. Meanwhile, your program will move on to the next line, which is return data.
Something like this would do what you want I think:
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
return docRef.get().then((datasnapshot)
return datasnapshot.data['url'];
);
add a comment
|
Since _getUrl is already marked as async you can also use await in its body to return the right value:
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
await datasnapshot = docRef.get();
let data = datasnapshot.data['url'];
return data;
add a comment
|
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55404419%2fsave-string-from-firestore-to-variable%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
This method will return null because you are not waiting for the get() future to return before you return data. docRef.get() is a Future, so it will execute asychronously. Meanwhile, your program will move on to the next line, which is return data.
Something like this would do what you want I think:
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
return docRef.get().then((datasnapshot)
return datasnapshot.data['url'];
);
add a comment
|
This method will return null because you are not waiting for the get() future to return before you return data. docRef.get() is a Future, so it will execute asychronously. Meanwhile, your program will move on to the next line, which is return data.
Something like this would do what you want I think:
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
return docRef.get().then((datasnapshot)
return datasnapshot.data['url'];
);
add a comment
|
This method will return null because you are not waiting for the get() future to return before you return data. docRef.get() is a Future, so it will execute asychronously. Meanwhile, your program will move on to the next line, which is return data.
Something like this would do what you want I think:
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
return docRef.get().then((datasnapshot)
return datasnapshot.data['url'];
);
This method will return null because you are not waiting for the get() future to return before you return data. docRef.get() is a Future, so it will execute asychronously. Meanwhile, your program will move on to the next line, which is return data.
Something like this would do what you want I think:
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
return docRef.get().then((datasnapshot)
return datasnapshot.data['url'];
);
answered Mar 28 at 19:12
KrisKris
5233 silver badges10 bronze badges
5233 silver badges10 bronze badges
add a comment
|
add a comment
|
Since _getUrl is already marked as async you can also use await in its body to return the right value:
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
await datasnapshot = docRef.get();
let data = datasnapshot.data['url'];
return data;
add a comment
|
Since _getUrl is already marked as async you can also use await in its body to return the right value:
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
await datasnapshot = docRef.get();
let data = datasnapshot.data['url'];
return data;
add a comment
|
Since _getUrl is already marked as async you can also use await in its body to return the right value:
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
await datasnapshot = docRef.get();
let data = datasnapshot.data['url'];
return data;
Since _getUrl is already marked as async you can also use await in its body to return the right value:
Future _getUrl() async
DocumentReference docRef = Firestore.instance.collection('information').document('pdf');
await datasnapshot = docRef.get();
let data = datasnapshot.data['url'];
return data;
answered Mar 28 at 19:53
Frank van PuffelenFrank van Puffelen
277k37 gold badges449 silver badges469 bronze badges
277k37 gold badges449 silver badges469 bronze badges
add a comment
|
add a comment
|
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55404419%2fsave-string-from-firestore-to-variable%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown