Не работает splash эффект на кнопке flutter
В чем ошибка?
InkWell(
splashColor: Theme.of(context).primaryColorLight,
highlightColor: Theme.of(context).primaryColorLight,
onTap: () {
FirebaseFirestore.instance.collection('users').add({
'name' : name,
'secondname' : secondname,
'email' : email,
'password' : password,
});
},
child: Text(label, style: const TextStyle(
color: Color(0xFF425c5a),
fontSize: 16,
fontWeight: FontWeight.w500
),),
),