skip to Main Content

How to add if child section – Flutter

return InkWell( onTap: () => { if(1==0){ Navigator.push( context, MaterialPageRoute( builder: (BuildContext context) => ImageScreen( url: widget.userbio.resimler![index].toString(), ), ),), }}, child: Image.network( widget.userbio.resimler![index].toString(), fit: BoxFit.cover, ) ); hello all stackoverflow users, ı need help for this. how can i add…

VIEW QUESTION
Back To Top
Search