mirror of
https://github.com/flutter/flutter.git
synced 2026-01-09 07:51:35 +08:00
Widget previews are being released as an experimental feature in the next stable release. This change has some minor last minute changes to prepare for release: - Makes `flutter widget-preview` visible - Adds documentation links to docs.flutter.dev (not yet staged) - Fixes minor bug with asset loading due to `AssetManifest.bin.json` not being accounted for in the asset path mapping logic
14 lines
513 B
Dart
14 lines
513 B
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
/// The Flutter widget preview annotations and data classes.
|
|
///
|
|
/// To use, import `package:flutter/widget_previews.dart`.
|
|
///
|
|
/// See [flutter.dev/to/widget-previews](https://flutter.dev/to/widget-previews)
|
|
/// for more details on getting started with widget previews.
|
|
library widget_previews;
|
|
|
|
export 'src/widget_previews/widget_previews.dart';
|