NxComingSoonWidget constructor

const NxComingSoonWidget({
  1. required String text,
  2. required String comingSoonTitle,
  3. Key? key,
  4. SvgPicture? svg,
  5. TextStyle? textStyleTitle,
  6. TextStyle? textStyleBody,
})

Creates a coming soon widget.

  • text - The descriptive message to display below the title
  • comingSoonTitle - The title text (typically "Coming Soon")
  • svg - Optional SVG icon to display above the title
  • textStyleTitle - Custom style for the title
  • textStyleBody - Custom style for the message

Implementation

const NxComingSoonWidget({
  required this.text,
  required this.comingSoonTitle,
  super.key,
  this.svg,
  this.textStyleTitle,
  this.textStyleBody,
});