NxEmptyScreen constructor
const
NxEmptyScreen({})
Creates an empty screen widget.
context
is required for screen size calculationsinformation
is the message to display below the iconcolor
sets the background color of the containericon
is the icon to display (defaults to sad face)height
andwidth
can 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,
});