outsideRowExpandedAspectRatio method
Implementation
Widget outsideRowExpandedAspectRatio({required Widget child, int flex = 1, double? aspectRatio}){
if(aspectRatio != null){
return child;
}else {
/// 横向 Expanded flex表示横向占比
return Expanded(
flex: flex,
child: child);
}
}