Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

empty widget in flutter

Widget build(BuildContext context) {
  return SizedBox.shrink();
}
//SizedBox.shrink() is a widget that is unlike Container or Material has no background 
  or any decorations whatsoever. It sizes itself to the smallest area possible, 
  if not influenced by parent constraints.
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #empty #widget #flutter
ADD COMMENT
Topic
Name
6+6 =