I want to direct people who touch the card to a different page.
I can't use onPressed commands. For eg. when I tap the "to do card", i want to navigate different page.
SizedBox(
width:160.0,
height: 150.0,
child: Card(
color: Color.fromARGB(255,21, 21,21),
elevation: 2.0,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)
),
child:Center(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
children: <Widget>[
Image.asset("assets/images/todo.png",width: 64.0,),
SizedBox(
height: 10.0,
),
Text(
"Todo List",
style: TextStyle(
color: Colors.white,
fontWeight: FontWeight.bold,
fontSize: 20.0
),
),
],
),
)
),
),
),
question from:
https://stackoverflow.com/questions/66054219/flutter-how-can-i-add-onpressed-commands-when-i-use-card-widgets 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…