ResponsiveLocalLayoutBuilder constructor

ResponsiveLocalLayoutBuilder({
  1. Key? key,
  2. required List<ResponsiveLayoutBuilderConfig> configs,
  3. required List<Widget> children,
})

a widget that changes according to its own width, the configs are assumed to be provided in ascending order

Implementation

ResponsiveLocalLayoutBuilder({Key? key, required this.configs, required this.children}) : super(key: key) {
  assert(configs.isNotEmpty);
}