SizedBox(
height: 50.0,
child: ElevatedButton(
style: ButtonStyle(
textStyle:
MaterialStateProperty.all(TextStyle(
fontSize: 17.0,
)),
backgroundColor:
MaterialStateProperty.all( ///这里
'#F38D3B'.color),
shape: MaterialStateProperty.all(
RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(10.0))),
),
onPressed: () {}, child: Text(' 预览 ')),
)
