AppLayout constructor

const AppLayout({
  1. Key? key,
  2. double? threshold = 800,
  3. required Widget standardBuilder(
    1. double height,
    2. double width
    ),
  4. Widget wideBuilder(
    1. double height,
    2. double width
    )?,
})

Implementation

const AppLayout({
  super.key,
  this.threshold = 800,
  required this.standardBuilder,
  this.wideBuilder,
});