Problem: The default functionality of Scaffold will resize the content to avoid the onscreen keyboard. This causes some lag with the content once the keyboard is dismissed. There's no need to try to resize our list of players.
Solution: Add a property to avoid resizing Scaffold when first adding players.
[x] Add resizeToAvoidBottomInset: false to main Scaffold
Problem: The default functionality of
Scaffold
will resize the content to avoid the onscreen keyboard. This causes some lag with the content once the keyboard is dismissed. There's no need to try to resize our list of players.Solution: Add a property to avoid resizing
Scaffold
when first adding players.resizeToAvoidBottomInset: false
to mainScaffold