Skip to content

有办法屏蔽点击返回事件吗? #92

Description

@oshiwei
var w = WillPopScope(
    child: Listener(
      behavior: HitTestBehavior.opaque,
      child: Center(
        child: Container(
            decoration: BoxDecoration(
              borderRadius: BorderRadius.circular(5),
              color: Colors.black.withOpacity(0.7),
            ),
            padding: const EdgeInsets.all(20),
            child: CircularProgressIndicator(
              valueColor: AlwaysStoppedAnimation(Colors.white),
            )),
      ),
    ),
    onWillPop: () async {
      print("onWillPop");
      return false;
    },
  );
showToastWidget(w, duration: Duration.zero, handleTouch: true);

需要屏蔽安卓点击物理返回键事件,这样写监听不到,有没有什么办法?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions