buttons property

  1. @override
ContextWidgetList get buttons
override

Implementation

@override
ContextWidgetList get buttons => (final context) => [
  BlurButton(
    caption: yesCaption,
    onClick: () {
      yesCallback();
      Navigator.pop(context);
    }
  ).niku
    ..bottom = 15
    ..right = yesPadding,
  BlurButton(
    caption: noCaption,
    onClick: () {
      noCallback();
      Navigator.pop(context);
    }
  ).niku
    ..bottom = 15
    ..right = 30
];