configRemovePadding function
dynamic
configRemovePadding({})
创建去除Padding控件
Implementation
configRemovePadding({
required BuildContext context,
required Widget child,
bool removeLeft = true,
bool removeTop = true,
bool removeRight = true,
bool removeBottom = true,
}) {
return MediaQuery.removePadding(
removeTop: removeTop,
removeBottom: removeBottom,
removeLeft: removeLeft,
removeRight: removeRight,
context: context,
child: child,
);
}