![]() * Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs |
||
---|---|---|
.. | ||
assets | ||
lib | ||
platform_integration | ||
.dartignore | ||
.firebaserc | ||
analysis_options.yaml | ||
analytics.html | ||
dashing_postprocess.dart | ||
dashing.json | ||
favicon.ico | ||
firebase_rules.json | ||
firebase.json | ||
google2ed1af765c529f57.html | ||
opensearch.html | ||
README.md | ||
snippets.html | ||
styles.html | ||
survey.html |
Welcome to the Flutter API reference documentation.
Flutter is Google’s mobile UI framework for crafting high-quality native interfaces on iOS and Android in record time. Flutter works with existing code, is used by developers and organizations around the world, and is free and open source.
The API reference herein covers all libraries that are exported by the Flutter SDK.
More Documentation
This site hosts Flutter's API documentation. Other documentation can be found at the following locations:
- flutter.dev (main site)
- Installation
- Codelabs
- Contributing to Flutter
Importing a Library
Framework Libraries
Libraries in the "Libraries" section below (or in the left navigation) are part
of the core Flutter framework and are imported using
'package:flutter/<library>.dart'
, like so:
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
Dart Libraries
Libraries in the "Dart" section exist in the 'dart:'
namespace and are imported
using 'dart:<library>'
, like so:
import 'dart:async';
import 'dart:ui';
Except for 'dart:core'
, you must import a Dart library before you can use it.
Other Libraries
Libraries in other sections are supporting libraries that ship with Flutter.
They are organized by package and are imported using
'package:<package>/<library>.dart'
, like so:
import 'package:flutter_test/flutter_test.dart';
import 'package:file/local.dart';
Finding Other Libraries
Flutter has a rich community of packages that have been contributed by the open-source community. You can browse those packages at pub.dev/flutter