【问题标题】:flutter carousel image click to open new page颤动轮播图片点击打开新页面
【发布时间】:2021-03-19 11:32:45
【问题描述】:

示例此屏幕简短,单击此红色横幅打开新页面。 有的请分享源码。enter image description here

【问题讨论】:

标签: flutter carousel


【解决方案1】:

我不知道这是否是你想要的,但你可以这样做:

return GestureDetector(
      onTap: () async {
        await Navigator.of(context).push(
          MaterialPageRoute(
            builder: (context) => Page(), // The page you want
          ),
        );
      },
      child: Child(), // The banner
    );

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2019-08-20
    • 2022-11-21
    • 2014-12-01
    • 2013-08-20
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多