I pressed a button and it is looking wierd
leading: Padding(
padding:
const EdgeInsets.only(left: 45.0), // устанавливаем отступ слева
child: IconButton(
icon: const Icon(
Icons.menu,
color: Colors.white,
),
onPressed: () {},
),
),
actions: [
Padding(
padding: const EdgeInsets.only(
right: 45.0), // устанавливаем отступ справа
child: IconButton(
onPressed: () {},
icon: const Icon(Icons.notifications, color: Colors.white),
),
),
],
),Please help with this problem. I would be really appreciative!
I tried adding Container, and it didnt help.
Ильяс Нигматов is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.