I’m currently started learning flutter and I want to change color of container on hover, I tried my each time I got an error.
MouseRegion(
cursor: SystemMouseCursorsclick,
child: GestureDetector(
onTap: (){},
child: Container(
padding: EdgeInsets.all(10),
child: Text(
'Container',
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.white,
),
),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(10),
color: Colors.black,
boxShadow: [
BoxShadow(
color: Colors.black38,
blurRadius: 10,
spreadRadius: 1,
offset: Offset(1, 3))
]),
),
),
),