wrap_with_stack

Wrap the selected widget with a Stack.

Before
Widget build(BuildContext context) {
  return const Placeholder();
  //     ^^^^^^^^^^^^^^^^^
}
After
Widget build(BuildContext context) {
  return const Stack(
    children: [
      Placeholder(),
    ],
  );
}

wrap_with_stack