topSide method

Widget topSide(
  1. BuildContext context,
  2. double topInsets
)

Override to customize the top area of your screen.

Tip: Ideal for placing elements like headers.

Implementation

Widget topSide(BuildContext context, double topInsets) {
  return const SizedBox.shrink();
}