Keep your widget visible when the keyboard appears.
In this example the footer is always visible:

Usage
Import:
import 'package:keep_visible/keep_visible.dart';
Wrap the widget you want to keep visible with a KeepVisible
widget:
KeepVisible(
child: Text('Login Button'),
),