OutlinedButton(
onPressed: () {},
style: ButtonStyle(
shape: MaterialStateProperty.all(
RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10.0),
),
),
),
child: const Text(
'Continue ?',
style: TextStyle(
color: Color(0xffbc9eff),
),
),
),
0 Comments