cra1nbow
Committed by GitHub

Fix BorderRadiusExtension

Before, when using r extension, bottomRight is copied from `bottomLeft.r` not `bottomRight.r`.
bottomRight should be copyWith `bottomRight.r`
... ... @@ -63,7 +63,7 @@ extension BorderRaduisExtension on BorderRadius {
/// Creates adapt BorderRadius using r [SizeExtension].
BorderRadius get r => copyWith(
bottomLeft: bottomLeft.r,
bottomRight: bottomLeft.r,
bottomRight: bottomRight.r,
topLeft: topLeft.r,
topRight: topRight.r,
);
... ...