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 .horizontal (left : Radius .circular (8 )));
20+ borderRadius: BorderRadiusGeometry .only (topLeft : Radius . circular ( 8 ), bottomLeft : Radius .circular (8 )));
2121 chips.last.shape = RoundedRectangleBorder (
22- borderRadius: BorderRadiusGeometry .horizontal (right : Radius .circular (8 )));
22+ borderRadius: BorderRadiusGeometry .only (topRight : Radius . circular ( 8 ), bottomRight : Radius .circular (8 )));
2323 chips.skip (1 ).take (chips.length - 2 ).forEach ((chip) {
2424 chip.shape = RoundedRectangleBorder (
25- borderRadius: BorderRadiusGeometry .horizontal (left : Radius . circular ( 0 ), right : Radius .circular (0 )));
25+ borderRadius: BorderRadiusGeometry .all ( Radius .circular (0 )));
2626 });
2727 return Row (
2828 mainAxisSize: MainAxisSize .min,
Original file line number Diff line number Diff line change @@ -25,17 +25,11 @@ class UserAdditionalPersonChip extends StatelessWidget {
2525 chips: [
2626 UserChip (
2727 user: user,
28- onTap: onTap,
29- shape: RoundedRectangleBorder (
30- borderRadius:
31- BorderRadiusGeometry .horizontal (left: Radius .circular (8 )))),
28+ onTap: onTap,),
3229 AdditionalPersonsChip (
3330 additionalPersons: additionalPersons,
3431 onTap: onTap,
35- user: user,
36- shape: RoundedRectangleBorder (
37- borderRadius:
38- BorderRadiusGeometry .horizontal (right: Radius .circular (8 ))))
32+ user: user,)
3933 ],
4034 );
4135 }
You can’t perform that action at this time.
0 commit comments