How to convert a Future in flutter to a Stream
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a function that returns a Future of the type duration.
Future loadur(TimerService timerservice) async
var dur = Duration.zero;
dur = await timerservice.currentDuration();
return dur;
The future takes duration from a timerservice which updates itself to run a timer.Now i want the future to be converted to a stream so i can show it in a StreamBuilder(Futurebuilder doesn't update the timer).
Any way to convert the future to a stream of duration will be helpful.
android dart flutter
add a comment |
I have a function that returns a Future of the type duration.
Future loadur(TimerService timerservice) async
var dur = Duration.zero;
dur = await timerservice.currentDuration();
return dur;
The future takes duration from a timerservice which updates itself to run a timer.Now i want the future to be converted to a stream so i can show it in a StreamBuilder(Futurebuilder doesn't update the timer).
Any way to convert the future to a stream of duration will be helpful.
android dart flutter
1
Can't make any sense of the question. Can you please explain what the actual problem is you try to solve?
– Günter Zöchbauer
Nov 14 '18 at 5:57
I have a timerservice which contains a timer/stopwatch,the above function returns the time from the timerservice as a future.As it is a timer it updates every second or so.Now i want to display the duration which i can using a futurebuilder but it wont update every second.So i need to use a stream builder,but the duration is a future
– ganraj kelkar
Nov 14 '18 at 6:06
Future has .asStream() Method to Convert to Stream.
– anmol.majhail
Nov 14 '18 at 6:13
A Future converted to a stream would still only emit a single event. Perhaps you want to use the duration to create aStream.periodic(duration)
– Günter Zöchbauer
Nov 14 '18 at 6:15
add a comment |
I have a function that returns a Future of the type duration.
Future loadur(TimerService timerservice) async
var dur = Duration.zero;
dur = await timerservice.currentDuration();
return dur;
The future takes duration from a timerservice which updates itself to run a timer.Now i want the future to be converted to a stream so i can show it in a StreamBuilder(Futurebuilder doesn't update the timer).
Any way to convert the future to a stream of duration will be helpful.
android dart flutter
I have a function that returns a Future of the type duration.
Future loadur(TimerService timerservice) async
var dur = Duration.zero;
dur = await timerservice.currentDuration();
return dur;
The future takes duration from a timerservice which updates itself to run a timer.Now i want the future to be converted to a stream so i can show it in a StreamBuilder(Futurebuilder doesn't update the timer).
Any way to convert the future to a stream of duration will be helpful.
android dart flutter
android dart flutter
asked Nov 14 '18 at 5:52
ganraj kelkarganraj kelkar
122
122
1
Can't make any sense of the question. Can you please explain what the actual problem is you try to solve?
– Günter Zöchbauer
Nov 14 '18 at 5:57
I have a timerservice which contains a timer/stopwatch,the above function returns the time from the timerservice as a future.As it is a timer it updates every second or so.Now i want to display the duration which i can using a futurebuilder but it wont update every second.So i need to use a stream builder,but the duration is a future
– ganraj kelkar
Nov 14 '18 at 6:06
Future has .asStream() Method to Convert to Stream.
– anmol.majhail
Nov 14 '18 at 6:13
A Future converted to a stream would still only emit a single event. Perhaps you want to use the duration to create aStream.periodic(duration)
– Günter Zöchbauer
Nov 14 '18 at 6:15
add a comment |
1
Can't make any sense of the question. Can you please explain what the actual problem is you try to solve?
– Günter Zöchbauer
Nov 14 '18 at 5:57
I have a timerservice which contains a timer/stopwatch,the above function returns the time from the timerservice as a future.As it is a timer it updates every second or so.Now i want to display the duration which i can using a futurebuilder but it wont update every second.So i need to use a stream builder,but the duration is a future
– ganraj kelkar
Nov 14 '18 at 6:06
Future has .asStream() Method to Convert to Stream.
– anmol.majhail
Nov 14 '18 at 6:13
A Future converted to a stream would still only emit a single event. Perhaps you want to use the duration to create aStream.periodic(duration)
– Günter Zöchbauer
Nov 14 '18 at 6:15
1
1
Can't make any sense of the question. Can you please explain what the actual problem is you try to solve?
– Günter Zöchbauer
Nov 14 '18 at 5:57
Can't make any sense of the question. Can you please explain what the actual problem is you try to solve?
– Günter Zöchbauer
Nov 14 '18 at 5:57
I have a timerservice which contains a timer/stopwatch,the above function returns the time from the timerservice as a future.As it is a timer it updates every second or so.Now i want to display the duration which i can using a futurebuilder but it wont update every second.So i need to use a stream builder,but the duration is a future
– ganraj kelkar
Nov 14 '18 at 6:06
I have a timerservice which contains a timer/stopwatch,the above function returns the time from the timerservice as a future.As it is a timer it updates every second or so.Now i want to display the duration which i can using a futurebuilder but it wont update every second.So i need to use a stream builder,but the duration is a future
– ganraj kelkar
Nov 14 '18 at 6:06
Future has .asStream() Method to Convert to Stream.
– anmol.majhail
Nov 14 '18 at 6:13
Future has .asStream() Method to Convert to Stream.
– anmol.majhail
Nov 14 '18 at 6:13
A Future converted to a stream would still only emit a single event. Perhaps you want to use the duration to create a
Stream.periodic(duration)
– Günter Zöchbauer
Nov 14 '18 at 6:15
A Future converted to a stream would still only emit a single event. Perhaps you want to use the duration to create a
Stream.periodic(duration)
– Günter Zöchbauer
Nov 14 '18 at 6:15
add a comment |
1 Answer
1
active
oldest
votes
you can Use Stream.fromFuture(dur)
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/3.0/"u003ecc by-sa 3.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%2f53293928%2fhow-to-convert-a-future-in-flutter-to-a-stream%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
you can Use Stream.fromFuture(dur)
add a comment |
you can Use Stream.fromFuture(dur)
add a comment |
you can Use Stream.fromFuture(dur)
you can Use Stream.fromFuture(dur)
answered Mar 14 at 18:11
mohammed mahmoudmohammed mahmoud
380210
380210
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%2f53293928%2fhow-to-convert-a-future-in-flutter-to-a-stream%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
1
Can't make any sense of the question. Can you please explain what the actual problem is you try to solve?
– Günter Zöchbauer
Nov 14 '18 at 5:57
I have a timerservice which contains a timer/stopwatch,the above function returns the time from the timerservice as a future.As it is a timer it updates every second or so.Now i want to display the duration which i can using a futurebuilder but it wont update every second.So i need to use a stream builder,but the duration is a future
– ganraj kelkar
Nov 14 '18 at 6:06
Future has .asStream() Method to Convert to Stream.
– anmol.majhail
Nov 14 '18 at 6:13
A Future converted to a stream would still only emit a single event. Perhaps you want to use the duration to create a
Stream.periodic(duration)
– Günter Zöchbauer
Nov 14 '18 at 6:15