Флаттер: как переопределить функцию - PullRequest
0 голосов
/ 29 октября 2019

По сути, я хочу переопределить несколько подпорок функции-предка showDialog, которая находится в packages/flutter/lib/src/material/dialog.dart

Я хочу изменить свойство barrierColor и удалить виджет SafeArea из метода построителя showGeneralDialog.

//...
Future<T> showDialog<T>({
  @required BuildContext context,
  bool barrierDismissible = true,
  @Deprecated(
    'Instead of using the "child" argument, return the child from a closure '
    'provided to the "builder" argument. This will ensure that the BuildContext '
    'is appropriate for widgets built in the dialog.'
  ) Widget child,
  WidgetBuilder builder,
}) {
  assert(child == null || builder == null);
  assert(debugCheckHasMaterialLocalizations(context));

  final ThemeData theme = Theme.of(context, shadowThemeOnly: true);
  return showGeneralDialog(
    context: context,
    pageBuilder: (BuildContext buildContext, Animation<double> animation, Animation<double> secondaryAnimation) {
      final Widget pageChild = child ?? Builder(builder: builder);
      return SafeArea( // <-- !remove SafeArea widget!
        child: Builder(
          builder: (BuildContext context) {
            return theme != null
                ? Theme(data: theme, child: pageChild)
                : pageChild;
          }
        ),
      );
    },
    barrierDismissible: barrierDismissible,
    barrierLabel: MaterialLocalizations.of(context).modalBarrierDismissLabel,
    barrierColor: Colors.black54, // <-- !change the color!
    transitionDuration: const Duration(milliseconds: 150),
    transitionBuilder: _buildMaterialDialogTransitions,
  );
}

Можно ли это сделать в main.dart файле? Если да, может кто-нибудь привести пример, пожалуйста?

1 Ответ

1 голос
/ 29 октября 2019

Вы можете просто скопировать / вставить эту функцию в ваш файл main.dart, изменить имя и барьерЦвет там, и это будет работать, потому что вы можете использовать showGeneralDialog

...