Skip to content

Commit 8b5b6bf

Browse files
committed
Add footer for documentation / filing a bug
1 parent 7cbbea3 commit 8b5b6bf

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

packages/devtools_app/lib/src/standalone_ui/ide_shared/property_editor/property_editor_panel.dart

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,16 +161,19 @@ class _PropertyEditorFooter extends StatelessWidget {
161161
final colorScheme = theme.colorScheme;
162162
final documentationLink = _documentationLink();
163163
return Container(
164-
color: colorScheme.secondary,
164+
decoration: BoxDecoration(
165+
color: colorScheme.surface,
166+
border: Border(top: BorderSide(color: Theme.of(context).focusColor)),
167+
),
165168
height: _PropertyEditorConnectedPanel.footerHeight,
166169
padding: const EdgeInsets.symmetric(vertical: densePadding),
167170
alignment: Alignment.center,
168171
child: Row(
169172
children: [
173+
const Spacer(),
170174
if (documentationLink != null)
171175
_DocsLink(documentationLink: documentationLink),
172-
const Spacer(),
173-
ReportFeedbackButton(color: colorScheme.onSecondary),
176+
ReportFeedbackButton(color: colorScheme.onSurface),
174177
],
175178
),
176179
);

0 commit comments

Comments
 (0)