Удалить серый фон для диалогового окна - PullRequest
0 голосов
/ 12 июня 2019

В моем приложении Flutter есть CupertinoAlertDialog и AlertDialog.каждый раз, когда появляется диалоговое окно, все позади становится темнее.Я хотел бы удалить фон.как мне это сделать?

CupertinoDialogAction(
        child: Text('Delete',
                style: TextStyle(color: Colors.red),
              ),
              onPressed: () async {
                await CommentActivity.delete(postData[index]['id'])
                  .then((response) {
                  if (response) {
                    setState(() {
                      postData.removeAt(index);
                      createPageActivity();
                      renderPageActivity();
                    });
                    Navigator.of(context).pop();
                  }
                });
              }
            )
          ],
        )

Ответы [ 2 ]

0 голосов
/ 12 июня 2019

Просто запустите диалог с де навигатором вместо использования showDialog () и используйте PageRouteBuilder

Navigator.of(context).push(
                  PageRouteBuilder(
                      pageBuilder: (context, _, __) => AlertDialog(),
                      opaque: false),
);
0 голосов
/ 12 июня 2019

Я думаю, что вы говорите о черном фейдере на заднем плане диалога ... Является частью реализации материала / купертино, в материале имеет фиксированное значение Colors.black54.

Вы будетенеобходимо скопировать код showDialog() и изменить его.

Демонстрация:

// common Dialog widget shown in both implementation. 
  Widget buildDialog(BuildContext context) {
    return CupertinoDialogAction(
      child: Text(
        'Delete',
        style: TextStyle(color: Colors.red),
      ),
      onPressed: () async {
        Navigator.of(context).pop();
      },
    );
  }

  void openDialog(BuildContext context) {
    // open custom dialog.
    openCustomDialog(context);

    // open default dialog.
//    openFlutterDialog(context);

  }

  // regular Fluter showDialog()
  void openFlutterDialog(BuildContext context) {
    showDialog(
      context: context,
      builder: (ctx) {
        return buildDialog(ctx);
      },
    );
  }

  void openCustomDialog(BuildContext context) {
    showCustomDialog(
      context: context,
      builder: (ctx) {
        return buildDialog(ctx);
      },
    );
  }

  // custom implementation of showDialog()...
  Future<T> showCustomDialog<T>({
    @required BuildContext context,
    bool barrierDismissible = true,
    WidgetBuilder builder,
  }) {
    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 = Builder(builder: builder);
        return SafeArea(
          child: Builder(builder: (BuildContext context) {
            return theme != null
                ? Theme(data: theme, child: pageChild)
                : pageChild;
          }),
        );
      },
      barrierDismissible: barrierDismissible,
      barrierLabel: MaterialLocalizations.of(context).modalBarrierDismissLabel,
      // KEY PART TO MODIFY, Flutter doesn't allow a transparent Color,
      // values under opacity .01 are considered transparent and will throw an error.
      // But this value is transparent enough.
      barrierColor: Colors.black.withOpacity(0.01),

            // you can modify the default FadeTransition duration here.
      transitionDuration: const Duration(milliseconds: 2000),
    );
  }

Это то, что вы искали?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...