screen_corner_radius 2.0.0
screen_corner_radius: ^2.0.0 copied to clipboard
Screen Corner Radius plugin.
Screen Corner Radius #
Plugin provides corner radius value of current device screen. Works for iOS and Android.
Usage #
- Import the package:
import 'package:screen_corner_radius/screen_corner_radius.dart';
- Use the method:
final BorderRadius screenRadius = await ScreenCornerRadius.get();
The return value is data class ScreenRadius, which can be used immediately in the widget layout.
Acknowledgments #
The problem was mostly that such a plugin had not been released to Pub yet. A huge thanks to users @kylebshr and @rehmatsg for the ScreenCorners resources and the device_corner_radius package to put together the logic for iOS and Android platforms.
Additional information #
For more details see example project. And feel free to open an issue if you find any bugs or errors or suggestions.