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
Describe the bug TextFormBox prop expands not working. But with textbox it works perfectly.
To Reproduce Steps to reproduce the behavior: add a simple code
import 'package:fluent_ui/fluent_ui.dart'; class TestePage extends StatefulWidget { TestePage({Key? key}) : super(key: key); @override State<TestePage> createState() => _TestePageState(); } class _TestePageState extends State<TestePage> { @override Widget build(BuildContext context) { return Container( color: Colors.red, height: 200, child: TextFormBox( maxLines: null, minLines: null, expands: true, ), ); } }
Expected behavior I expected the TextFormField to occupy all the space in the container
Screenshots
The text was updated successfully, but these errors were encountered:
I am checking this now! It seems it's caused by the FormRow widget, used inside of TextFormBox
FormRow
TextFormBox
Sorry, something went wrong.
@bdlukaa This bug appears again in the latest version 3.12.0.
@bdlukaa Please reopen this bug. This bug still occurs in the latest version 4.5.0.
Successfully merging a pull request may close this issue.
Describe the bug
TextFormBox prop expands not working. But with textbox it works perfectly.
To Reproduce
Steps to reproduce the behavior:
add a simple code
Expected behavior
I expected the TextFormField to occupy all the space in the container
Screenshots
The text was updated successfully, but these errors were encountered: