Flutter web listview not scrolling
To create a scrolling ListView in Flutter web, you can use the ‘ListView.builder’ widget along with a ‘ScrollController’. First, you need to import the necessary packages: <script src=”https://cdn.jsdelivr.net/npm/flutter@2.5.3/flutter_web.js”></script> <script src=”main.dart.js” type=”application/javascript”></script> Next, you can use the following code as an example: <html> <head> <style> #flutter-app { height: 100vh; display: flex; align-items: center; justify-content: center; } … Read more