keep_visible 1.0.1
keep_visible: ^1.0.1 copied to clipboard
Keep an widget visible when the keyboard appears.
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'),
),