Skip to content
Merged
Show file tree
Hide file tree
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

This file was deleted.

2 changes: 1 addition & 1 deletion packages/devtools_app/lib/src/shared/feature_flags.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void setEnableExperiments() {
bool get enableBeta => enableExperiments || !isExternalBuild;

const _kMemoryOfflineExperiment =
bool.fromEnvironment('memory_offline_experiment', defaultValue: true);
bool.fromEnvironment('memory_offline_experiment');

// It is ok to have enum-like static only classes.
// ignore: avoid_classes_with_only_static_members
Expand Down
4 changes: 1 addition & 3 deletions packages/devtools_app/release_notes/NEXT_RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ TODO: Remove this section if there are not any general updates.

## Memory updates

* Enable offline analysis of snapshots, historical data analysis and save/load. - [#7843](https://github.com/flutter/devtools/pull/7843)

![Memory offline data](images/memory-save-load.png "Memory offline data")
TODO: Remove this section if there are not any general updates.

## Debugger updates

Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ void main() {
// InspectorScreen,
PerformanceScreen, // Works offline, so appears regardless of web flag
ProfilerScreen, // Works offline, so appears regardless of web flag
MemoryScreen,
// MemoryScreen,
// DebuggerScreen,
// NetworkScreen,
// LoggingScreen,
Expand Down
Loading