I am trying to change the border color and also the text label color of an Outline button but I am getting errors. What is the best way to achieve this?
OutlinedButton(
onPressed: null,
color: Colors.orange,
style: ButtonStyle(
shape: MaterialStateProperty.all(RoundedRectangleBorder(borderRadius: BorderRadius.circular(30.0))),
side: BorderSide(width: 5.0, color: Colors.blue),
),
child: const Text("Crime"),
),