Skip to content
Open
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
24 changes: 24 additions & 0 deletions src/data/glossary.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
- term: "Embedder"
short_description: |-
The platform-specific component that coordinates with the operating system
and manages the Flutter engine.
long_description: |-
The _embedder_ provides the entrypoint for a Flutter app.
It coordinates with the underlying operating system to access
services like rendering surfaces, accessibility, and input.
It also manages the message event loop.
The embedder is written in a language appropriate for the platform,
such as Java/Kotlin for Android, Swift/Objective-C for iOS/macOS,
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

This is a great addition! For improved accuracy and consistency with the 'Flutter architectural overview' page, consider updating the list of languages. The overview page also mentions C++ for Android and Objective-C++ for iOS/macOS. Including them here would make the definition more complete and consistent.

    such as Java/Kotlin and C++ for Android, Swift/Objective-C/Objective-C++ for iOS/macOS,

and C++ for Windows and Linux.
related_links:
- text: "Architectural overview: The Embedder"
link: "/resources/architectural-overview#platform-embedding"
type: "doc"
- text: "Flutter on embedded devices"
link: "/embedded"
type: "doc"
labels:
- "architecture"
- "engine"

- term: "Engine"
short_description: |-
The portable runtime for Flutter apps.
Expand Down