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
1条答案
按热度按时间vmpqdwk31#
您需要使用
MaterialApp
PackageWidget
。