[FIX] AstromicImage Wierd shape

This commit is contained in:
2025-05-28 14:19:19 +03:00
parent 1a69cb0007
commit 508c5f5b6e
2 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
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),
);
}
}