在Flutter中,要调用堆栈内部的类,可以使用Navigator类提供的相关方法。
示例代码:
Navigator.push(
context,
MaterialPageRoute(builder: (context) => SecondScreen()),
);
上述代码中,context是当前页面的上下文,SecondScreen是要推入堆栈的新路由。
示例代码:
Navigator.pop(context);
上述代码中,context是当前页面的上下文,调用pop方法即可返回到上一个路由。
以上是在Flutter中调用堆栈内部的类的方法介绍和示例代码。
领取专属 10元无门槛券
手把手带您无忧上云