pageChildren method

List<Widget> pageChildren(
  1. double width,
  2. double size,
  3. double box,
  4. double space,
  5. double horz,
)

Implementation

List<Widget> pageChildren(
    double width, double size, double box, double space, double horz) {
  return <Widget>[
    Container(
      width: 750,
      height: 700,
      alignment: Alignment(0.8, -0.8),
      color: Colors.white,
      padding: EdgeInsets.symmetric(horizontal: horz, vertical: 10),
      child: SignUpPageDesktop(
          //crossAxisCount: 3,
          // crossAxisSpacing: space,
          // mainAxisSpacing: 8.0,
          // childAspectRatio: box,
          ),
    )
  ];
}