File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ class ChipCombiner extends StatelessWidget {
1717 );
1818 }
1919 chips.first.shape = RoundedRectangleBorder (
20- borderRadius: BorderRadiusGeometry .only (topLeft : Radius . circular ( 8 ), bottomLeft : Radius .circular (8 )));
20+ borderRadius: BorderRadiusGeometry .horizontal (left : Radius .circular (8 )));
2121 chips.last.shape = RoundedRectangleBorder (
22- borderRadius: BorderRadiusGeometry .only (topRight : Radius . circular ( 8 ), bottomRight : Radius .circular (8 )));
22+ borderRadius: BorderRadiusGeometry .horizontal (right : Radius .circular (8 )));
2323 chips.skip (1 ).take (chips.length - 2 ).forEach ((chip) {
2424 chip.shape = RoundedRectangleBorder (
25- borderRadius: BorderRadiusGeometry .all ( Radius .circular (0 )));
25+ borderRadius: BorderRadiusGeometry .horizontal (left : Radius . circular ( 0 ), right : Radius .circular (0 )));
2626 });
2727 return Row (
2828 mainAxisSize: MainAxisSize .min,
Original file line number Diff line number Diff line change @@ -25,11 +25,17 @@ class UserAdditionalPersonChip extends StatelessWidget {
2525 chips: [
2626 UserChip (
2727 user: user,
28- onTap: onTap,),
28+ onTap: onTap,
29+ shape: RoundedRectangleBorder (
30+ borderRadius:
31+ BorderRadiusGeometry .horizontal (left: Radius .circular (8 )))),
2932 AdditionalPersonsChip (
3033 additionalPersons: additionalPersons,
3134 onTap: onTap,
32- user: user,)
35+ user: user,
36+ shape: RoundedRectangleBorder (
37+ borderRadius:
38+ BorderRadiusGeometry .horizontal (right: Radius .circular (8 ))))
3339 ],
3440 );
3541 }
You can’t perform that action at this time.
0 commit comments