Вообщем, как сделать чтобы при наводке на textbutton текст внутри был белым?
код:
Expanded(
flex: 0,
child: Container(
margin: EdgeInsets.only(right:30),
child: TextButton(
onPressed: () {
_tabController.animateTo(1);
},
child: const Text(
'Моя библиотека',
style: TextStyle(
color: Color.fromARGB(255, 59, 59, 59),
fontSize: 18,
),
),
style: ButtonStyle(
overlayColor:
MaterialStateProperty.all(Color.fromARGB(255, 105, 92, 253))),
),
),
),
-
Вопрос задан
-
78 просмотров