expanded method
expand the list view.
Implementation
Column expanded() {
return Column(
children: [
Expanded(
child: this,
),
],
);
}
expand the list view.
Column expanded() {
return Column(
children: [
Expanded(
child: this,
),
],
);
}