buttons property

  1. @override
ContextWidgetList get buttons
override

Implementation

@override
ContextWidgetList get buttons => (final context) => [
  BlurButton(
    caption: buttonCaption,
    onClick: () {
      callback();
      Navigator.of(context).pop();
    }
  ).niku
    ..bottom = context.bRatio ? 7 : 15
    ..right = context.bRatio ? 15 : 30
];