ScrollableColumn constructor

const ScrollableColumn({
  1. Key? key,
  2. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  3. List<Widget> children = const [],
})

Implementation

const ScrollableColumn({
  super.key,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.children = const [],
});