ResponsiveScreenContent constructor

const ResponsiveScreenContent({
  1. Key? key,
  2. bool primary = true,
  3. AlignmentGeometry alignment = Alignment.topCenter,
  4. required Widget child,
})

Implementation

const ResponsiveScreenContent({
  super.key,
  this.primary = true,
  this.alignment = Alignment.topCenter,
  required this.child,
});