-
Notifications
You must be signed in to change notification settings - Fork 344
Add support for displaying profiler hits for a script in CodeView
#4831
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Friendly bump @kenzieschmoll and @elliette, still looking for a review :-) |
const Divider( | ||
height: 0, | ||
), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is the purpose of a divider of height 0? does this actually add a border?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
height: 0
effectively removes the padding from around the divider. The divider is still rendered, just much closer to the widget above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you use OutlineDecoration.onlyBottom
instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not visually identical to a Divider
, so we'd have two different line styles for the header horizontal divider and the vertical divider separating the two columns.
try { | ||
final report = await serviceManager.service!.getSourceReport( | ||
isolateRef.id!, | ||
const [SourceReportKind.kCoverage], | ||
// TODO(bkonyi): make _Profile a public report type. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there a issue filed for this in the SDK?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
packages/devtools_app/lib/src/screens/vm_developer/vm_service_private_extensions.dart
Outdated
Show resolved
Hide resolved
436a817
to
b134916
Compare
93b1f8a
to
f4910f3
Compare
Example:
Fixes #4750