I want to make each cell in 3rd column a clickable Cell that I can navigate from it to another page.
Asked
Active
Viewed 153 times
0
2 Answers
3
Inkwell(
onTap: (){},
child: YourRowWidget()
)
Use inkwell
widget for your problem.

Robin
- 4,902
- 2
- 27
- 43

Tasnuva Tavasum oshin
- 1
- 1
- 17
- 28
2
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(),
),