Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
df57dc9d
Unverified
Commit
df57dc9d
authored
Nov 12, 2018
by
Todd Volkert
Committed by
GitHub
Nov 12, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add content to the API doc landing page (#24193)
parent
70c6fb1f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
2 deletions
+49
-2
README.md
dev/docs/README.md
+49
-2
No files found.
dev/docs/README.md
View file @
df57dc9d
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.
### Documentation
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:
*
**Main site: [flutter.io](https://flutter.io/)**
*
[
flutter.io
](
https://flutter.io/
)
(
main
site)
*
[
Installation
](
https://flutter.io/docs/get-started/install
)
*
[
Codelabs
](
https://flutter.io/docs/codelabs
)
*
[
Contributing to Flutter
](
https://github.com/flutter/flutter/blob/master/CONTRIBUTING.md
)
### 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:
```
dart
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:
```
dart
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:
```
dart
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.dartlang.org
](
http://pub.dartlang.org/flutter
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment