Вы можете изменить радиус из свойства shape
и присвоить ему RoundedRectangleBorder
, здесь вы можете играть с радиусом границы.
Вы получите закругленный угол только в topRight
,topLeft
и bottomRight
в следующем примере:
RaisedButton(
onPressed: () {},
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.only(
topRight: Radius.circular(25.0),
topLeft: Radius.circular(25.0),
bottomRight: Radius.circular(25.0),
),
),
),