How can I implement sideBorder to elevatedButton through themedata.enter image description here
elevatedButtonTheme: ElevatedButtonThemeData(
style: ButtonStyle(side: MaterialStateProperty<BorderSide>//Stuck here),
),
To use Theme Data border in Elevated Button, you have use styleFrom method
elevatedButtonTheme: ElevatedButtonThemeData(
style: ElevatedButton.styleFrom(
side: BorderSide(color: Colors.black, width: 2.5)) )
for more info styleFrom
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With