I want to make each cell in 3rd column a clickable Cell that I can navigate from it to another page.
Clikable Cell in flutter
215 Views Asked by SH EB At
2
There are 2 best solutions below
0

Add InkWell
or GestureDetector
as parent widget of your row. InkWell
add some visual effect on click. On the other side GestureDetector
is used on a more general purpose that shows no visual effect/indicator.
InkWell(
onTap: () => {},
child: YourRow(),
),
GestureDetector(
onTap: () => {},
child: YourRow(),
),
Use
inkwell
widget for your problem.