bottomSide method

Widget bottomSide(
  1. BuildContext context,
  2. double bottomInsets
)

Override to customize the bottom area of your screen.

Tip: Ideal for placing elements like navigation controls.

Implementation

Widget bottomSide(BuildContext context, double bottomInsets) {
  return const SizedBox.shrink();
}