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 <lucas.xu@appflowy.io>

---------

Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io>
This commit is contained in:
Ahsan Ahmad 2023-10-04 14:35:02 +05:00 committed by GitHub
parent 05fa306782
commit 3ab1ff5e73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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(