Skip to content

Commit

Permalink
Remove grey overlay on CLI widget (#86)
Browse files Browse the repository at this point in the history
closes #77
  • Loading branch information
erdemyerebasmaz authored Jul 23, 2024
1 parent aa3ab17 commit 4b02dd3
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions lib/routes/dev/developers_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,9 @@ class _DevelopersViewState extends State<DevelopersView> {
],
),
// TODO: Liquid - Remove Absorb Pointer once execute_command API is implemented
body: Container(
color: const Color(0xFF696969),
child: AbsorbPointer(
absorbing: true,
child: CommandLineInterface(scaffoldKey: scaffoldKey),
),
body: AbsorbPointer(
absorbing: true,
child: CommandLineInterface(scaffoldKey: scaffoldKey),
),
);
}
Expand Down

0 comments on commit 4b02dd3

Please sign in to comment.