Can the container box decoration be applied to button inside it. For example I am trying to have circular border in an elevated button. It is not applying in this case.
Container(
height: 100,
width: 100,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(40),
),
child: ElevatedButton(
style: ElevatedButton.styleFrom(textStyle: const TextStyle(fontSize: 15)),
onPressed: () async { navigateToBasketPage(context);
},
child: const Text('My basket'),
),
),
Thanks!