safeWidth property
double
get
safeWidth
Get safe area width (excluding side notches if any).
Implementation
double get safeWidth {
final padding = MediaQuery.paddingOf(this);
return screenWidth - padding.left - padding.right;
}