1

I am using system_alert_window flutter package and want to add user image in body but not able to achieve this. please help.

1 Answers1

-3

You can use Dialog instead of alert window, in Dialog you can customise as your need.

 Dialog customDialog = Dialog(
  shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12.0)), 
  child: Container(
    height: 300.0,
    width: 300.0,
    child: Column(
      mainAxisAlignment: MainAxisAlignment.center,
      children: <Widget>[
       //Cutomise your widget with Image and Text
      ],
    ),
  ),
);

To show the Dialog

showDialog(context: context, builder: (BuildContext context) => customDialog);
Navin Kumar
  • 3,393
  • 3
  • 21
  • 46