1-) FLUTTER - GestureDetector bir Container a tıklama olayı verir veya herhangi bir widgete
return GestureDetector( onTap: (){ EasyLoading.showToast(""+index.toString()); }, child: Container( alignment: Alignment.center, color: Colors.red[(index + 1) % 8 * 100], child: Text( "Ders " + index.toString(), textAlign: TextAlign.center, ), ),);