Using Packages
Flutter supports using shared packages contributed by other developers to the Flutter and Dart ecosystems. This allows you to quickly build your app without having to develop everything from scratch.
Existing packages enable many use cases, for example, making network requests
(http
), custom navigation/route handling
(fluro
), integration with device
APIs (like url_launcher
&
battery
), and using third-party
platform SDKs (like
Firebase).
If you are looking to develop a new package, please see developing packages.
If you are looking to add assets, images, or fonts, whether stored in files or packages, please see Assets & Images.
Using packages
Searching for packages
Packages are published to the Pub package repository.
The Flutter landing page displays top packages that are compatible with Flutter (i.e., that declare dependencies generally compatible with Flutter), and supports searching among all published packages.
Adding a package dependency to an app
To add a package ‘css_colors’ to an app:
- Depend on it
- Open the
pubspec.yaml
file located inside your app folder, and addcss_colors:
underdependencies
.
- Open the
- Install it
- From the terminal: Run
flutter packages get
OR - From IntelliJ: Click ‘Packages Get’ in the action ribbon at the top of
pubspec.yaml
- From the terminal: Run
- Import it
- Add a corresponding
import
statement in your Dart code.
- Add a corresponding
The ‘Installing’ tab available on any package page on Pub is a handy reference for these steps.
For a complete example, see CSS Colors example below.
Developing new packages
Should a package not be available for your specific use case, you can develop new custom packages.
Managing package dependencies & versions
Package versions
All packages have a version number, specified in their pubspec.yaml
file. Pub
displays the current version of a package next to it’s name (for example, see
the url_launcher package), as
well as a list of all prior versions (url_launcher
versions).
When a package is added to pubspec.yaml
using the shorthand form plugin1:
this is interpreted as plugin1: any
, i.e. any version of the package may be
used. To ensure your app does not break when a package is updated, we recommend
specifying a version range using one of the following formats:
- Range constraints: Specify a minimum and maximim version, e.g.:
dependencies: url_launcher: '>=0.1.2 <0.2.0'
- Range constraint with caret syntax:
Similar to a regular range constraints
dependencies: collection: '^0.1.2'
For additional details, see the Pub versioning guide.
Updating package dependencies
When you run flutter packages get
(‘Packages Get’ in IntelliJ) for the first
time after adding a package, Flutter saves the concrete package version found in
the pubspec.lock
lockfile. This ensures
that you get the same version again if you, or another developer on your team,
run flutter packages get
.
If you want to upgrade to a new version of the package, for example to use new
features in that package, run flutter packages upgrade
(‘Upgrade dependencies’
in IntelliJ). This will retrieve the highest available version of the package,
which is allowed by the version constraint you have specified in pubspec.yaml
.
Dependencies on unpublished packages
Packages can be used even when not published on Pub. For private plugins not intended for public publishing, or for packages not yet ready for publishing, additional dependency options are avaialble:
- Path dependency: A Flutter app can depend on a plugin via a file system
path:
dependency. The path can be either relative, or absolute. For example, to depend on a plugin ‘plugin1’ located in a directory next to the app, use this syntax:dependencies: plugin1: path: ../plugin1/
- Git dependency: You can also depend on a package stored in a Git
repository. If the package is located in the root of the repo, use this
syntax:
dependencies: plugin1: git: url: git://github.com/flutter/plugin1.git
- Git dependency on a package in a folder: By default Pub assumes the
package is located in the root of the Git repository. If that is not the case,
you can specify the location with the
path
argument, e.g.:dependencies: package1: git: url: git://github.com/flutter/packages.git path: packages/package1
Finally, you can use the
ref
argument to pin the dependency to a specific git commit, branch, or tag. For more details, see the Pub Dependencies article.
Examples
Example: Using the CSS Colors package
The css_colors
package defines
color constants for the CSS colors, allowing you to use them wherever the
Flutter framework expects the Color
type.
To use this package:
-
Create a new project called ‘cssdemo’
- Open
pubspec.yaml
, and replace:dependencies: flutter: sdk: flutter
with:
dependencies: flutter: sdk: flutter css_colors: ^1.0.0
-
Run
flutter packages get
in the terminal, or click ‘Packages get’ in IntelliJ - Open
lib/main.dart
and replace its full contents with:import 'package:flutter/material.dart'; import 'package:css_colors/css_colors.dart'; void main() { runApp(new MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( home: new DemoPage(), ); } } class DemoPage extends StatelessWidget { @override Widget build(BuildContext context) { return new Scaffold( body: new Container(color: CSSColors.orange) ); } }
- Run the app. When you click the ‘Show Flutter homepage’ you should see the phone’s default browser open, and the Flutter homepage appear.
Example: Using the URL Launcher package to launch the browser
The URL Launcher plugin package enables you to open the default browser on the mobile platform to display a given URL. It demonstrates how packages may also contain platform-specific code (we call these packages ‘plugins’). It is supported on both Android and iOS.
To use this plugin:
-
Create a new project called ‘launchdemo’
- Open
pubspec.yaml
, and replace:dependencies: flutter: sdk: flutter
with:
dependencies: flutter: sdk: flutter url_launcher: ^0.4.1
-
Run
flutter packages get
in the terminal, or click ‘Packages get’ in IntelliJ - Open
lib/main.dart
and replace its full contents with:import 'package:flutter/material.dart'; import 'package:url_launcher/url_launcher.dart'; void main() { runApp(new MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( home: new DemoPage(), ); } } class DemoPage extends StatelessWidget { launchURL() { launch('https://flutter.io'); } @override Widget build(BuildContext context) { return new Scaffold( body: new Center( child: new RaisedButton( onPressed: launchURL, child: new Text('Show Flutter homepage'), ), ), ); } }
- Run the app. When you click the ‘Show Flutter homepage’ you should see the phone’s default browser open, and the Flutter homepage appear.