We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey, i want to make a login popup but the content gets hidden by the keyboard.
Here is the code:
final popup = BeautifulPopup( context: context, template: TemplateSuccess, ); popup.show( title: 'Melde dich an', content: Column( children: <Widget>[ Container( child: TextField( autofocus: true, controller: username, decoration: InputDecoration(labelText: "Gebe deinen Nutzername ein."), )), // TODO: Add password ], ), actions: [ popup.button( label: 'Einloggen', onPressed: () { // TODO: Add login }, ), ], );
Here are some pictures:
Best regards Elias
The text was updated successfully, but these errors were encountered:
you can wrap that widget into singlescrollchildview
Sorry, something went wrong.
No branches or pull requests
Hey,
i want to make a login popup but the content gets hidden by the keyboard.
Here is the code:
Here are some pictures:
Best regards
Elias
The text was updated successfully, but these errors were encountered: