bosskmk / pluto_grid

PlutoGrid is a dataGrid for flutter that can be controlled by the keyboard on desktop and web. Of course, it works well on Android and IOS.
https://pluto.weblaze.dev
MIT License
636 stars 290 forks source link

How to wrap inside ListView ? [Help] #983

Closed Taymindis closed 6 months ago

Taymindis commented 7 months ago

How can I wrap inside ListView and customize my own Grid row. For e.g. code like this

  return ListView.builder(
              itemBuilder: (BuildContext context, int i) {
                return PlutoGridItem(post: state.posts[i], index: i, color: c);
              },
              itemCount: state.hasReachedMax
                  ? state.posts.length
                  : state.posts.length + 1,
              controller: _scrollController,
            );
github-actions[bot] commented 6 months ago

This issue is stale because it has been open for 30 days with no activity.

github-actions[bot] commented 6 months ago

This issue was closed because it has been inactive for 14 days since being marked as stale.