flutter/dev/docs
Greg Spencer 9fb781a54a
Update samples to work with Dartpad, and convert all that make… (#50377)
This PR modifies the existing API docs samples to use DartPad so that all of the samples are now interactive apps on the API docs site.

It also removes the restriction for the max width of the description area so that the dartpad region can expand horizontally.

I updated the first paragraph on the API docs to indicate that Flutter is more than just mobile now (same text as the README.md at the top level).

I modified a few of the examples so that they looked nicer, and fit better on the page.

I added the sample description text above each DartPad instance, since that often defines the context of the example.

I removed animations and images when they were redundant with the sample content. There were a few that made sense to keep, so I did.
2020-02-10 10:00:20 -08:00
..
assets Update samples to work with Dartpad, and convert all that make… (#50377) 2020-02-10 10:00:20 -08:00
lib Update samples to work with Dartpad, and convert all that make… (#50377) 2020-02-10 10:00:20 -08:00
platform_integration Update documentation URLs (#49208) 2020-01-22 09:55:09 +11:00
.dartignore find all repo packages (#3368) 2016-04-15 20:25:57 -07:00
.firebaserc Firebase hosting for docs (#4871) 2016-07-12 12:53:47 -07:00
analysis_options.yaml Rename .analysis_options to analysis_options.yaml (#11594) 2017-08-15 08:46:42 -04:00
analytics.html Merge analaytics from docs site and flutter.io site. (#24825) 2018-11-28 15:37:18 -08:00
dashing.json Replace flutter.io with flutter.dev (#30562) 2019-04-05 11:39:30 -07:00
dashing_postprocess.dart License update (#45373) 2019-11-27 15:04:02 -08:00
favicon.ico Docs colors logo (#5176) 2016-08-01 15:43:10 -07:00
firebase.json Updates CORS origin for snippets. (#39780) 2019-09-05 16:08:48 -07:00
firebase_rules.json Firebase hosting for docs (#4871) 2016-07-12 12:53:47 -07:00
google2ed1af765c529f57.html add a webmaster tools verification file (#3902) 2016-05-13 12:27:06 -07:00
opensearch.html Adds favicon to Dash/Zeal docset, adds OpenSearch metadata. (#25178) 2018-12-11 09:53:33 -08:00
README.md Updating dart.dev related links (#32641) 2019-05-14 10:35:00 -07:00
snippets.html Dartdoc snippet extension to inject full featured code snippets in to API docs. (#23281) 2018-10-23 13:50:24 -07:00
styles.html Dartdoc snippet extension to inject full featured code snippets in to API docs. (#23281) 2018-10-23 13:50:24 -07:00
survey.html Revert "Remove the old HaTS implementation on API docs" (#28748) 2019-03-01 15:42:43 -08:00

Welcome to the Flutter API reference documentation.

Flutter is Googles 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