Skip to content

Commit

Permalink
Add better round border to action entry card
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean28518 committed Mar 7, 2024
1 parent a63abcf commit 34ee696
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/layouts/main_screen/action_entry_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@ class _ActionEntryCardState extends State<ActionEntryCard> {
tileColor: widget.selected
? Theme.of(context).focusColor
: const Color.fromARGB(0, 0, 0, 0),
hoverColor: Colors.grey,
title: Text(widget.actionEntry.name),
subtitle: Text(widget.actionEntry.description),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10.0),
),
// For debugging search index:
// subtitle: Text(
// "${widget.actionEntry.description} | ${widget.actionEntry.priority} | ${widget.actionEntry.tmpPriority} | ${widget.actionEntry.action} "),
Expand Down

0 comments on commit 34ee696

Please sign in to comment.