页面跳转
来源:6-7 如何创建和使用Flutter的路由与导航?【边学边做】
陈朝晖是皇上
2022-02-23
通过Navigator.pushNamed(page, routeName)
跳转页面 提示type ‘pushVC’ is not a subtype of type 'BuildContext’
flutter 2.2
pushVC页面代码
import 'package:flutter/material.dart';
class pushVC extends StatefulWidget {
@override
_pushVCState createState() => _pushVCState();
}
class _pushVCState extends State<pushVC> {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
primarySwatch: Colors.red
),
title: 'A',
home: Scaffold(
appBar: AppBar(
backgroundColor: Colors.green,
),
),
);
}
}
写回答
2回答
-
CrazyCodeBoy
2022-02-28
在页面build的时候
00 -
CrazyCodeBoy
2022-02-24
传参不对,Navigator.pushNamed第一个参数传context
012022-02-25
相似问题