flutter 有人可以解决这个错误,它发生在每一个我点击图标

jtw3ybtb  于 2023-10-22  发布在  Flutter
关注(0)|答案(1)|浏览(121)
return Scaffold(
      backgroundColor:
          width > webScreenSize ? webBackgroundColor : Colors.white,
      appBar: width > webScreenSize
          ? null
          : AppBar(
              backgroundColor: mobileBackgroundColor,
              centerTitle: false,
              title: SvgPicture.network(
                '',
                color: primaryColor,
                height: 40,
              ),
              actions: [
                  Center(
                    child: Row(children: [
                      IconButton(
                        icon: const Icon(
                          Icons.add_box_outlined,
                          color: primaryColor,
                        ),
                        onPressed: () => Navigator.of(context).push(
                          MaterialPageRoute(
                            builder: (context) => const AddPostScreen(),
                          ),
                        ),
                      ),
                    ]),
                  ),
                ]),

This is the error that shows up

vmpqdwk3

vmpqdwk31#

您需要使用MaterialApp Package Widget

相关问题