Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions src/data/glossary.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
- term: "Hot reload"
short_description: |-
A Flutter feature (also called "stateful hot reload")
that allows you to inject updated code into
A Flutter feature that allows you to inject updated code into
a running application in the Dart VM and see the changes immediately
while maintaining application state.
long_description: |-
Expand Down Expand Up @@ -73,6 +72,32 @@
- "performance"
- "engine"

- term: "Jank"
short_description: |-
When an app appears to stutter or jerk visually instead of animating
smoothly.
long_description: |-
Jank occurs when a system can't keep up with the expected frame rate
and drops frames. Jank is a performance problem. Flutter offers
information and tooling, such as the Performance tool in DevTools,
that can help you diagnose and fix jank in your application.
related_links:
- text: "Use the Performance view in DevTools"
link: "/tools/devtools/performance"
type: "doc"
- text: "Improving rendering performance"
link: "/perf/rendering-performance"
type: "doc"
- text: "Performance best practices"
link: "/perf/best-practices"
type: "doc"
- text: "Measure performance with an integration test"
link: "/cookbook/testing/integration/profiling"
type: "doc"
labels:
- "performance"
- "smooth rendering"

- term: "Sliver"
short_description: |-
A customizable portion of a scrollable area.
Expand Down