overflow flutter
there's two solution for this problem :
1- you need to just add this line to your Scaffold
resizeToAvoidBottomInset: false,
2- or wrap all your widgets with SingleChildScrollView()
Hey Argon