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
3 changes: 2 additions & 1 deletion content/docs/flutter/meta.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"title": "Flutter SDK"
"title": "Flutter SDK",
"pages": ["installation", "flutter-example", "fullstack-example", "best-practices"]
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Introduce pages array for menu ordering
The new "pages" array correctly lists the Flutter SDK docs in the intended drop-down order. To ensure these items render properly, verify that each identifier has a matching Markdown file.

Run this script to confirm all listed pages exist:


🏁 Script executed:

#!/bin/bash
# Verify that each entry in meta.json has a corresponding .md file
for page in $(python -m json.tool content/docs/flutter/meta.json | jq -r .pages[]); do
  filepath="content/docs/flutter/${page}.md"
  if [ ! -f "$filepath" ]; then
    echo "Missing file: $filepath"
    exit 1
  fi
done
echo "All listed pages exist."

Length of output: 380


Missing Markdown file for pages entry
The pages array in content/docs/flutter/meta.json references at least one identifier without a corresponding .md file. Please add or rename the markdown file so each entry resolves correctly.

Files needing attention:

  • Missing file: content/docs/flutter/installation.md

}