Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Keyboard hiding TextFields #348

Open
juankbenavidess opened this issue Jan 15, 2024 · 2 comments
Open

Keyboard hiding TextFields #348

juankbenavidess opened this issue Jan 15, 2024 · 2 comments

Comments

@juankbenavidess
Copy link

juankbenavidess commented Jan 15, 2024

When opening the textFormfield the screen is not redrawn and the textFormField is not displayed when the keyboard is displayed. This error should be solved by the library, not with other widgets.

WhatsApp.Video.2024-01-15.at.10.03.50.1.mp4

class CreateGestionScreenState extends ConsumerState<CreateGestionScreen> { @override Widget build(BuildContext) { return SafeArea( child: LoadingOverlay( isLoading: isLoading, child: SingleChildScrollView( child: Column( children: [ Padding( padding: const EdgeInsets.all(8.0), child: Table( TableRow(children: [ Text('Observaciones'), TextFormField( initialValue: observaciones, // key: Key( // proformProvider.proforma.entrada.toString()), // decoration: _inputDecoration, onTapOutside: (event) { FocusManager.instance.primaryFocus?.unfocus(); setState(() {}); }, // textAlign: TextAlign.end, onChanged: (value) { observaciones = value; }, ), ]),....
This is my structure

@ravikumarbigwings
Copy link

did you found solution

@AktanK13
Copy link

AktanK13 commented May 4, 2024

hideNavigationBar:
MediaQuery.of(context).viewInsets.bottom > 0 ? true : false,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants