An error occurred while loading commit signatures
  • Greg Spencer's avatar
    Add anchors to samples (#35906) · 67ee3e19
    Greg Spencer authored
    This adds an "anchor button" to each of the samples so that the user can link to individual samples instead of having to link to just the page. Clicking on the anchor button jumps to the anchor, as well as copying the anchor URL to the clipboard.
    
    There is some oddness in the implementation: because dartdoc uses a <base> tag, the href for the link can't just be "#id", it has to calculate the URL from the current window href. I do that in the onmouseenter and onclick because onload doesn't get triggered for <a> tags (and onmouseenter doesn't get triggered for mobile platforms), but I still want the href to be updated before someone right-clicks it to copy the URL.
    67ee3e19
Name
Last commit
Last update
..
assets Loading commit data...
lib Loading commit data...
platform_integration Loading commit data...
.dartignore Loading commit data...
.firebaserc Loading commit data...
README.md Loading commit data...
analysis_options.yaml Loading commit data...
analytics.html Loading commit data...
dashing.json Loading commit data...
dashing_postprocess.dart Loading commit data...
favicon.ico Loading commit data...
firebase.json Loading commit data...
firebase_rules.json Loading commit data...
google2ed1af765c529f57.html Loading commit data...
opensearch.html Loading commit data...
snippets.html Loading commit data...
styles.html Loading commit data...
survey.html Loading commit data...

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