Flutter: bloc, how to show an alert dialog











up vote
0
down vote

favorite












I´m new in the bloc pattern and stream stuff. I want to show up an alert dialog when I press a button, but I can´t find a way to do it. Actually my code is:



Widget button() {
return RaisedButton(
child: Text('Show alert'),
color: Colors.blue[700],
textColor: Colors.white,
onPressed: () {
bloc.submit();
});
}



return Scaffold(
appBar: AppBar(
title: Text("Title"),
),
body: StreamBuilder(
stream: bloc.getAlert,
builder: (context, snapshot) {
if (snapshot.hasData) {
return Text("I have Dataaaaaa ${snapshot.data}");
} else
return ListView(
children: <Widget>[
Container(
button()
)
...


And the BLoC:



final _submissionController = StreamController();
Stream get submissionStream=> _submissionController.stream;
Sink get submissionSink=> _submissionController.sink;


I tried to do something like:



Widget button() {
return StreamBuilder(
stream: submissionStream
builder: (context, snapshot){
if (snapshot.hasData){
return showDialog(...)
}else
return RaisedButton(
child: Text('Show alert'),
color: Colors.blue[700],
textColor: Colors.white,
onPressed: () {
bloc.submit();
});
}


But, of course, it didn´t work.










share|improve this question


























    up vote
    0
    down vote

    favorite












    I´m new in the bloc pattern and stream stuff. I want to show up an alert dialog when I press a button, but I can´t find a way to do it. Actually my code is:



    Widget button() {
    return RaisedButton(
    child: Text('Show alert'),
    color: Colors.blue[700],
    textColor: Colors.white,
    onPressed: () {
    bloc.submit();
    });
    }



    return Scaffold(
    appBar: AppBar(
    title: Text("Title"),
    ),
    body: StreamBuilder(
    stream: bloc.getAlert,
    builder: (context, snapshot) {
    if (snapshot.hasData) {
    return Text("I have Dataaaaaa ${snapshot.data}");
    } else
    return ListView(
    children: <Widget>[
    Container(
    button()
    )
    ...


    And the BLoC:



    final _submissionController = StreamController();
    Stream get submissionStream=> _submissionController.stream;
    Sink get submissionSink=> _submissionController.sink;


    I tried to do something like:



    Widget button() {
    return StreamBuilder(
    stream: submissionStream
    builder: (context, snapshot){
    if (snapshot.hasData){
    return showDialog(...)
    }else
    return RaisedButton(
    child: Text('Show alert'),
    color: Colors.blue[700],
    textColor: Colors.white,
    onPressed: () {
    bloc.submit();
    });
    }


    But, of course, it didn´t work.










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I´m new in the bloc pattern and stream stuff. I want to show up an alert dialog when I press a button, but I can´t find a way to do it. Actually my code is:



      Widget button() {
      return RaisedButton(
      child: Text('Show alert'),
      color: Colors.blue[700],
      textColor: Colors.white,
      onPressed: () {
      bloc.submit();
      });
      }



      return Scaffold(
      appBar: AppBar(
      title: Text("Title"),
      ),
      body: StreamBuilder(
      stream: bloc.getAlert,
      builder: (context, snapshot) {
      if (snapshot.hasData) {
      return Text("I have Dataaaaaa ${snapshot.data}");
      } else
      return ListView(
      children: <Widget>[
      Container(
      button()
      )
      ...


      And the BLoC:



      final _submissionController = StreamController();
      Stream get submissionStream=> _submissionController.stream;
      Sink get submissionSink=> _submissionController.sink;


      I tried to do something like:



      Widget button() {
      return StreamBuilder(
      stream: submissionStream
      builder: (context, snapshot){
      if (snapshot.hasData){
      return showDialog(...)
      }else
      return RaisedButton(
      child: Text('Show alert'),
      color: Colors.blue[700],
      textColor: Colors.white,
      onPressed: () {
      bloc.submit();
      });
      }


      But, of course, it didn´t work.










      share|improve this question













      I´m new in the bloc pattern and stream stuff. I want to show up an alert dialog when I press a button, but I can´t find a way to do it. Actually my code is:



      Widget button() {
      return RaisedButton(
      child: Text('Show alert'),
      color: Colors.blue[700],
      textColor: Colors.white,
      onPressed: () {
      bloc.submit();
      });
      }



      return Scaffold(
      appBar: AppBar(
      title: Text("Title"),
      ),
      body: StreamBuilder(
      stream: bloc.getAlert,
      builder: (context, snapshot) {
      if (snapshot.hasData) {
      return Text("I have Dataaaaaa ${snapshot.data}");
      } else
      return ListView(
      children: <Widget>[
      Container(
      button()
      )
      ...


      And the BLoC:



      final _submissionController = StreamController();
      Stream get submissionStream=> _submissionController.stream;
      Sink get submissionSink=> _submissionController.sink;


      I tried to do something like:



      Widget button() {
      return StreamBuilder(
      stream: submissionStream
      builder: (context, snapshot){
      if (snapshot.hasData){
      return showDialog(...)
      }else
      return RaisedButton(
      child: Text('Show alert'),
      color: Colors.blue[700],
      textColor: Colors.white,
      onPressed: () {
      bloc.submit();
      });
      }


      But, of course, it didn´t work.







      view stream flutter alert






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 19 at 8:26









      Little Monkey

      10810




      10810
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          You can't show a dialog when build working. When you have new data, then you create a new widget. Probably better for you will be not using the stream in this case, but if it necessary you should use




          WidgetsBinding.instance.addPostFrameCallback((_) => yourFunction(context));




          in your if



          if (snapshot.hasData) {
          WidgetsBinding.instance.addPostFrameCallback((_) => showDialogFunction(context));
          }



          This code will be launched after build method, so dialog will show immediately.



          Bloc function always return widget, so always return button() or different wiget when stream has data






          share|improve this answer























          • Yes, probably is better to avoid using BLoC in these cases, but since I´m pretty new to it, I still have to learn how do things properly with it. However the way you suggested worked, so thank you!
            – Little Monkey
            Nov 19 at 14:31











          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',
          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
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53370814%2fflutter-bloc-how-to-show-an-alert-dialog%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








          up vote
          1
          down vote



          accepted










          You can't show a dialog when build working. When you have new data, then you create a new widget. Probably better for you will be not using the stream in this case, but if it necessary you should use




          WidgetsBinding.instance.addPostFrameCallback((_) => yourFunction(context));




          in your if



          if (snapshot.hasData) {
          WidgetsBinding.instance.addPostFrameCallback((_) => showDialogFunction(context));
          }



          This code will be launched after build method, so dialog will show immediately.



          Bloc function always return widget, so always return button() or different wiget when stream has data






          share|improve this answer























          • Yes, probably is better to avoid using BLoC in these cases, but since I´m pretty new to it, I still have to learn how do things properly with it. However the way you suggested worked, so thank you!
            – Little Monkey
            Nov 19 at 14:31















          up vote
          1
          down vote



          accepted










          You can't show a dialog when build working. When you have new data, then you create a new widget. Probably better for you will be not using the stream in this case, but if it necessary you should use




          WidgetsBinding.instance.addPostFrameCallback((_) => yourFunction(context));




          in your if



          if (snapshot.hasData) {
          WidgetsBinding.instance.addPostFrameCallback((_) => showDialogFunction(context));
          }



          This code will be launched after build method, so dialog will show immediately.



          Bloc function always return widget, so always return button() or different wiget when stream has data






          share|improve this answer























          • Yes, probably is better to avoid using BLoC in these cases, but since I´m pretty new to it, I still have to learn how do things properly with it. However the way you suggested worked, so thank you!
            – Little Monkey
            Nov 19 at 14:31













          up vote
          1
          down vote



          accepted







          up vote
          1
          down vote



          accepted






          You can't show a dialog when build working. When you have new data, then you create a new widget. Probably better for you will be not using the stream in this case, but if it necessary you should use




          WidgetsBinding.instance.addPostFrameCallback((_) => yourFunction(context));




          in your if



          if (snapshot.hasData) {
          WidgetsBinding.instance.addPostFrameCallback((_) => showDialogFunction(context));
          }



          This code will be launched after build method, so dialog will show immediately.



          Bloc function always return widget, so always return button() or different wiget when stream has data






          share|improve this answer














          You can't show a dialog when build working. When you have new data, then you create a new widget. Probably better for you will be not using the stream in this case, but if it necessary you should use




          WidgetsBinding.instance.addPostFrameCallback((_) => yourFunction(context));




          in your if



          if (snapshot.hasData) {
          WidgetsBinding.instance.addPostFrameCallback((_) => showDialogFunction(context));
          }



          This code will be launched after build method, so dialog will show immediately.



          Bloc function always return widget, so always return button() or different wiget when stream has data







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 19 at 14:33

























          answered Nov 19 at 13:43









          Mateusz

          1212




          1212












          • Yes, probably is better to avoid using BLoC in these cases, but since I´m pretty new to it, I still have to learn how do things properly with it. However the way you suggested worked, so thank you!
            – Little Monkey
            Nov 19 at 14:31


















          • Yes, probably is better to avoid using BLoC in these cases, but since I´m pretty new to it, I still have to learn how do things properly with it. However the way you suggested worked, so thank you!
            – Little Monkey
            Nov 19 at 14:31
















          Yes, probably is better to avoid using BLoC in these cases, but since I´m pretty new to it, I still have to learn how do things properly with it. However the way you suggested worked, so thank you!
          – Little Monkey
          Nov 19 at 14:31




          Yes, probably is better to avoid using BLoC in these cases, but since I´m pretty new to it, I still have to learn how do things properly with it. However the way you suggested worked, so thank you!
          – Little Monkey
          Nov 19 at 14:31


















          draft saved

          draft discarded




















































          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.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53370814%2fflutter-bloc-how-to-show-an-alert-dialog%23new-answer', 'question_page');
          }
          );

          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







          Popular posts from this blog

          Costa Masnaga

          Fotorealismo

          Sidney Franklin