13 lines
359 B
Dart
13 lines
359 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
extension BorderRadiusEX on BorderRadius {
|
|
BorderRadius addToAll(double p) {
|
|
return BorderRadius.only(
|
|
topLeft: topLeft + Radius.circular(p),
|
|
topRight: topRight + Radius.circular(p),
|
|
bottomLeft: bottomLeft + Radius.circular(p),
|
|
bottomRight: bottomRight + Radius.circular(p),
|
|
);
|
|
}
|
|
}
|