Reputation: 598
I have a spreadsheet, with about 100 rows and 30 columns I want to show on my app.
I am looking to do something like this:
My needs:
I was successful in creating this with Table
(UI) + InteractiveViewer
(allows zooming and scrolling bidirectionally) but it is very very heavy on the build, each build takes a toll on performance so I thought about using GridView.builder
+ InteractiveViewer
which hopefully alleviates build a bit (still testing).
What do you think I should do for this project?
Upvotes: 5
Views: 4196
Reputation: 1971
There is also a way to use a famous package
ex.)
https://pub.dev/packages/pluto_grid
https://pub.dev/packages/flutter_layout_grid
But what comes to mind right now is to configure only that page as a webview.
Upvotes: 8