jonjomckay / fritter

A privacy-friendly Twitter frontend for mobile devices
https://fritter.cc
MIT License
1.38k stars 80 forks source link

fix the textfield hidden by the keyboard in Import subscriptions page. #753

Closed j-fbriere closed 1 year ago

j-fbriere commented 1 year ago

This is to fix the Quacker issue #69. This issue also apply to Fritter.

Since the changes are not easy to view with a diff, here is the explanation of the change I made:

In subscriptions/_import.dart file, in the build function, Instead of:

return Scaffold(
  ...
   body: Container(

We now have:

return Scaffold(
  ...
  body: SingleChildScrollView(
    child: Container(
jonjomckay commented 1 year ago

Thanks!