VxLayout constructor

const VxLayout({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext context,
    2. VxWindowSize window,
    3. BoxConstraints constraints
    ),
  3. VxSizeConfig? sizeConfig,
})

Implementation

const VxLayout({
  Key? key,
  required this.builder,
  this.sizeConfig,
}) : super(key: key);