Skip to content

Commit

Permalink
[Inspector V2] Up the opacity of the inspector tree on search (flutte…
Browse files Browse the repository at this point in the history
  • Loading branch information
elliette authored Sep 26, 2024
1 parent 01dadbc commit 47524bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1387,7 +1387,7 @@ class InspectorRowContent extends StatelessWidget {
valueListenable: controller.searchNotifier,
builder: (context, searchValue, _) {
return Opacity(
opacity: searchValue.isEmpty || row.isSearchMatch ? 1 : 0.2,
opacity: searchValue.isEmpty || row.isSearchMatch ? 1 : 0.6,
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Expand Down

0 comments on commit 47524bc

Please sign in to comment.