static Widget horizontal({double? height, Color? color}) { return Container( height: height ?? 1, width: double.infinity, color: color ?? Colors.black, ); }