Is it possible to create links to sections in the same page in flutter web?
问题 I want to create a website using flutter web but I'm unable to navigate to sections in the same page. Here's an example of what I want to achieve using flutter. P.S. Navigator is not working: 回答1: I created an example with PageView class MyHomePage extends StatelessWidget { var list = ["Home","Services", "Work", "About"]; var colors = [Colors.orange, Colors.blue, Colors.red, Colors.green]; PageController controller = PageController(); @override Widget build(BuildContext context) { return