You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the ShadInputFormField widget has its showCursor property defaulted to false. This behavior can cause confusion for users expecting the text cursor to be visible by default, especially in editable text fields. Having showCursor default to true would align with the typical behavior of text input fields in most UI frameworks.
Expected results
ShadInputFormField(
controller: controller,
// No need to specify showCursor: true explicitly
);
Steps to reproduce
Currently, the ShadInputFormField widget has its showCursor property defaulted to false. This behavior can cause confusion for users expecting the text cursor to be visible by default, especially in editable text fields. Having showCursor default to true would align with the typical behavior of text input fields in most UI frameworks.
Expected results
ShadInputFormField(
controller: controller,
// No need to specify
showCursor: true
explicitly);
Actual results
ShadInputFormField(
controller: controller,
showCursor: true,
);
shadcn_ui version
0.16.0
Platform
Web
Code sample
Screenshots or Video
No response
Logs
Logs
[Paste your logs here]
Flutter Doctor output
Doctor output
[Paste your output here]
The text was updated successfully, but these errors were encountered: