Flutter Glossary

Browse 5 flutter terms defined in plain English, from the cultural dictionary of computing.

5 Flutter Terms

Dart
A client-optimized programming language developed by Google, primarily known as the language behind the Flutter UI framework. Dart supports both ahead-of-time...
Isolate
In Dart and Flutter, an independent worker with its own memory heap that runs concurrently without sharing state with other isolates, communicating only...
Mobile Framework
A software framework that provides the runtime, UI components, and build tooling needed to develop mobile applications — either natively (SwiftUI, Jetpack...
Platform Channel
A Flutter mechanism for bidirectional communication between Dart code and native platform code (Swift/Kotlin/Java/Objective-C), using asynchronous message...
Pubspec
The pubspec.yaml file in Dart and Flutter projects that declares metadata, dependencies, and configuration. Equivalent to package.json in Node.js or Cargo.toml...

Related Topics