NxEmptyScreen constructor
const
NxEmptyScreen({})
Creates an empty screen widget.
contextis required for screen size calculationsinformationis the message to display below the iconcolorsets the background color of the containericonis the icon to display (defaults to sad face)heightandwidthcan be used to override default dimensions
Implementation
const NxEmptyScreen({
required this.context,
required this.information,
super.key,
this.color,
this.icon = Ionicons.sad_outline,
this.height,
this.width,
});