Skip to content

Commit d3213d5

Browse files
committed
Move deep links tutorial video URL to a named constant
1 parent b5acea3 commit d3213d5

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • packages/devtools_app/lib/src/shared/framework

packages/devtools_app/lib/src/shared/framework/screen.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ const _kNetworkDisconnectExperience = bool.fromEnvironment(
2727
defaultValue: true,
2828
);
2929

30+
const _deepLinksTutorialVideoUrl = 'https://youtu.be/d7sZL6h1Elw';
31+
3032
enum ScreenMetaData {
3133
home(
3234
'home',
@@ -124,7 +126,7 @@ enum ScreenMetaData {
124126
requiresConnection: false,
125127
requiresDartVm: true,
126128
requiresFlutter: true,
127-
tutorialVideoUrl: 'https://youtu.be/d7sZL6h1Elw',
129+
tutorialVideoUrl: _deepLinksTutorialVideoUrl,
128130
),
129131
vmTools(
130132
'vm-tools',

0 commit comments

Comments
 (0)