Widget getDefaultContainer( bool isLightTheme, { Widget? child, }) { return Container( color: isLightTheme ? SBUColors.background50 : SBUColors.background600, child: child, ); }