AdaptiveScaffold constructor

const AdaptiveScaffold({
  1. Key? key,
  2. required Widget body,
  3. required AdaptiveAppBarData appBarData,
})

A widget that displays a Scaffold based on the OS

Implementation

const AdaptiveScaffold({
  Key? key,
  required this.body,
  required this.appBarData,
}) : super(key: key);