doonfrs / pluto_grid_plus

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
18 stars 20 forks source link

[Help] Is there a way to put Widgets (mainly IconButtons and Icons) inside cells #64

Closed MuKhAlm closed 1 month ago

MuKhAlm commented 1 month ago

Description

I'm using the table to display students in rows. Each student is supposed to have actions related to it (edit, suspend, remove, etc.)

Those actions are supposed to be accessed via IconButtons inside a cell (In a column titled Actions)

Is there a way to get that functionality?

doonfrs commented 1 month ago

Hi, @MuKhAlm The row as renderer property, it should help you to add any widget dynamically instead of only text

MuKhAlm commented 1 month ago

Hi, @MuKhAlm

The row as renderer property, it should help you to add any widget dynamically instead of only text

Thank you very much!

(It feels like I'm doing something I should not be doing but hey it gets the job done!)