Questions tagged [flutter-textinputfield]
88 questions
0
votes
2 answers
Changing the text characters as user is typing in textfield flutter
I'm new to flutter and I'm trying to figure out a way so that users can type their pronouns in a very specific way into my app. They can type "she/her/hers" for example, and if they press space, a "/" would appear. I currently have a textfield for…

new_user
- 11
- 2
0
votes
2 answers
passcode input hideen by keyboard
I created six digit passcode filed component and it is working fine as expected in bigger size emulator but when I check with small size emulator, the passcode input is hidden by keyboard.
child: TextField(
enableInteractiveSelection:…

kartheeki j
- 2,206
- 5
- 27
- 51
0
votes
0 answers
Flutter Textfield New Line Text with Spacing
In Flutter TextField i have some text already present in it.
Which Looks like this
#include
int main()
{
//Text to be entered at this location
return 0;
}
Now if i insert below string at the selected cursor location
for(int…

narayan rathod
- 81
- 11
0
votes
1 answer
TextField's current focus position in flutter
Hey I have a TextField and a controller for it through which I access its current text value and add some text like (Some Special Asterix or text with angular brackets just like hashnode's text editor) to it when needed, adding text at the end is…

Gowtham MG
- 51
- 1
- 5
0
votes
1 answer
How to center align text in MARKDOWN language?
I want to align my heading
Heading
at center in my blogs.
I am using flutter by the way to display markdown
I found a way by using div containers which is somewhat similar to html but if anyone seeing this question has better idea please…

Manav Sarkar
- 89
- 1
- 9
0
votes
2 answers
Flutter typeahead textField in a reactive_forms custom widget not displaying the selected option text
I'm using Flutter Typeahead to use a google maps places autocomplete. Everything is working fine except that I can't get the textField to show the selected suggestion text. I am setting the TextEditingController.text to some valid text and it just…

BeniaminoBaggins
- 11,202
- 41
- 152
- 287
0
votes
0 answers
Text fields are showing too much on inactive Input connection in flutter
hello friends I am trying to solve this problem since a month but I cannot I tried almost and everything and search every where but I cant find any solution so I am here asking for your help I want to build a login screen but my input text giving me…

Shaik Mohammed
- 15
- 3
-1
votes
4 answers
How to make a button inactive until a required field is filled in properly in flutter
I want to make a particular button inactive and a different color until all the required fields filled properly, I also want there to be a message under the textfield telling the user to fill the field correctly if they aren't. This is what I have…

Iniisking
- 45
- 6
-1
votes
1 answer
Flutter textfield behaves strange (updating with the wrong value)
I ran into a weird behavior related to the TextFormField, so I maintained a list of Objects in the parent widget, I'm using the following code to render a list of child widgets
children: [
...childProfiles
…

jjjjjjjman
- 9
- 1
- 3
-1
votes
3 answers
how display small portion of text from big text flutter?
Acutal
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris non mauris nulla. Nam euismod condimentum erat, tempor efficitur quam. Aliquam commodo pretium libero vel interdum. Quisque suscipit a massa suscipit auctor. Maecenas faucibus…

user8819119
- 326
- 1
- 3
- 11
-1
votes
2 answers
TextField Cursor Position Flutter WEB
What this code does is print the position of the cursor in the text when you click on it.
TextEditingController controller = TextEditingController();
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
…

PandicornGhost
- 48
- 8
-2
votes
1 answer
i'm trying to use customTextField
i'm trying to use customTextField
this the file which contain the Widget
import 'package:flutter/material.dart';
Widget defaultFormField({
required TextEditingController controller,
required TextInputType type,
required Function validate,
…

Ahmad
- 1
-3
votes
2 answers
Flutter: How to store value from flutter textfield as int?
how to store a value from textfield as int so I can use it with operator for calculation?

Popcorn_Caramel
- 11
- 3