confirmButton property

Widget? confirmButton
getter/setter pair

Use this to add confirm button widget. To assign press event on non-clickable widgets like

GestureDetector(
  onTap: (){

  }
  child: widget,
)

or

InkWell(
  onTap: (){

  }
  child: widget,
)

Implementation

Widget? confirmButton;