tree: 9b415cbf378e3412b47a8b9fa10b0f985a8dbe58 [path history] [tgz]
  1. assets/
  2. lib/
  3. platform_integration/
  4. .dartignore
  5. .firebaserc
  6. analysis_options.yaml
  7. analytics.html
  8. dashing.json
  9. dashing_postprocess.dart
  10. favicon.ico
  11. firebase.json
  12. firebase_rules.json
  13. google2ed1af765c529f57.html
  14. opensearch.html
  15. README.md
  16. snippets.html
  17. styles.html
  18. survey.html
dev/docs/README.md

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:

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