Row constructor

const Row(
  1. List<Widget> children, {
  2. Key? key,
  3. CrossAxisAlignment crossAxisAlignment = .start,
  4. MainAxisAlignment mainAxisAlignment = .start,
  5. String? backgroundChar,
  6. Style? backgroundStyle,
})

Creates a horizontal layout for children.

Implementation

const Row(
  this.children, {
  super.key,
  this.crossAxisAlignment = .start,
  this.mainAxisAlignment = .start,
  this.backgroundChar,
  this.backgroundStyle,
});