Is it possible to make the FloatingActionButton in the centre instead of the right side?
import \'package:flutter/material.dart\';
import \'numb
Try wrapping it in a Center widget or use a crossAxisAlignment of CrossAxisAlignment.center on your Column.
You should pick one part of your Column to be wrapped in a Flexible that will collapse to avoid overflow, or replace some or all of it with a ListView so users can scroll to see the parts that are hidden.