Home > Blockchain >  how to have a button build a widget and have it setstate
how to have a button build a widget and have it setstate

Time:11-19

I currently have a InkWell that builds a custom widget alert dialog when pressed using the build method below.

InkWell(
  onTap: () => showDialog<String>(
    context: context,
    builder: (BuildContext context) => Popup(),

I also need it to set the state of some Bools and Int's when pressed which usually happens when using the setstate method. can someone please show me how to do both build a widget and setstate when the button is pressed? what would the code look like?

cheers

CodePudding user response:

Make a function and set bools before you build the dialog. Then call the method in onTap:

buildMyDialog(){
  myBool = false;
  myInt = 2;
  showDialog<String>(
    context: context,
    builder: (BuildContext context) => Popup(),
  );
}

If you need your current UI to use the values, setState before showing dialog in the same method.

  • Related