CustomDialog constructor

const CustomDialog({
  1. Key? key,
  2. Function? onButtonPressed,
  3. String title = 'Congratulations!',
  4. String infoText = 'You have completed this!',
  5. String buttonText = 'OK',
  6. Widget child = const Image(image: AssetImage('assets/congratulations.png'), width: 200, height: 200),
})

Implementation

const CustomDialog({
  super.key,
  this.onButtonPressed,
  this.title = 'Congratulations!',
  this.infoText = 'You have completed this!',
  this.buttonText = 'OK',
  this.child = const Image(
    image: AssetImage('assets/congratulations.png'),
    width: 200,
    height: 200,
  ),
});