/screen_corners

Get the amount of bending that's going on in the corners - iOS only currently

Primary LanguageDartMIT LicenseMIT

Screen Corners

The easiest way to get your screen's border radius

NOTE: ONLY WORKING ON IOS CURRNETLY!

How to

Add this to your main.dart

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await ScreenCorners.initScreenCorners();
  runApp(const ScreenCornersApp());
}

and then voila

SomeWidget(
  borderRadius: ScreenCorners.corner.value
)

Fin

No idea if I can explain it any better than that

www.alekangelov.com