我部署了一个颤振的网络应用程序,但是当用户浏览到不同的屏幕时,浏览器栏中的路径永远不会更新。
你可以在这里体验一下:https ://owleyes.codemagic.app/#/
我正在使用以下方法导航:
Navigator.push(
context,
MaterialPageRoute(builder: (context) => AboutPage()),
);
https://github.com/owleyesdev/owleyes/blob/master/lib/pages/home_page.dart#L24