textfield set value flutter
/// You can use a [TextFormField] instead of [TextField]
/// and use the [initialValue] property. for example:
TextFormField(initialValue: "I am smart")
textfield set value flutter
/// You can use a [TextFormField] instead of [TextField]
/// and use the [initialValue] property. for example:
TextFormField(initialValue: "I am smart")
flutter how to get a value from text widget
String txt = '';
@override
Widget build(BuildContext context) {
return Column(
Children <Widget>[
Text(txt), // this will store the text from somewhere and save it in to txt
SizedBox(height: 15),
ElevatedButton(
onPressed () {
// we can then call txt to see if the value is correct
print(txt.tostring); //.tostring may not be necessary
}
),
]
);
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us