mirror of
https://github.com/flutter/flutter.git
synced 2026-02-11 21:33:08 +08:00
28 lines
867 B
Dart
28 lines
867 B
Dart
// Copyright 2016 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
/// Core Flutter framework primitives.
|
|
///
|
|
/// The features defined in this library are the lowest-level utility
|
|
/// classes and functions used by all the other layers of the Flutter
|
|
/// framework.
|
|
library foundation;
|
|
|
|
export 'src/foundation/assertions.dart';
|
|
export 'src/foundation/basic_types.dart';
|
|
export 'src/foundation/binding.dart';
|
|
export 'src/foundation/change_notifier.dart';
|
|
export 'src/foundation/licenses.dart';
|
|
export 'src/foundation/listenable.dart';
|
|
export 'src/foundation/platform.dart';
|
|
export 'src/foundation/print.dart';
|
|
export 'src/foundation/synchronous_future.dart';
|
|
|
|
export 'package:meta/meta.dart' show
|
|
checked,
|
|
mustCallSuper,
|
|
optionalTypeArgs,
|
|
protected,
|
|
required;
|