Bläddra i källkod

fix:The placeholder text for URL cells shouldn't be underlined (#3565)

* fix:The placeholder text for URL cells shouldn't be underlined

* Update frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/url_cell/url_cell.dart

Co-authored-by: Lucas.Xu <[email protected]>

---------

Co-authored-by: Lucas.Xu <[email protected]>
Ahsan Ahmad 1 år sedan
förälder
incheckning
3ab1ff5e73

+ 3 - 1
frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/url_cell/url_cell.dart

@@ -158,7 +158,9 @@ class _GridURLCellState extends GridEditableTextCell<GridURLCell> {
                       Theme.of(context).textTheme.bodyMedium)
                   ?.copyWith(
                 color: Theme.of(context).colorScheme.primary,
-                decoration: TextDecoration.underline,
+                decoration: _controller.text.isNotEmpty
+                    ? TextDecoration.underline
+                    : TextDecoration.none,
               ),
               autofocus: false,
               decoration: InputDecoration(