buildLayout method
Implementation
Scaffold buildLayout(
BuildContext context, {
required VoidCallback onPressed,
}) =>
Scaffold(
appBar: _appBar,
body: Padding(
padding: const EdgeInsets.all(16),
child: pickerColumn(onPressed: onPressed),
),
);