foundation.dart 1.44 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11
// 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;

12
export 'package:meta/meta.dart' show
13
  factory,
14
  immutable,
15
  mustCallSuper,
16
  nonVirtual,
17 18
  optionalTypeArgs,
  protected,
19 20
  required,
  visibleForTesting;
21

22
export 'src/foundation/annotations.dart';
23
export 'src/foundation/assertions.dart';
24
export 'src/foundation/basic_types.dart';
25
export 'src/foundation/binding.dart';
26
export 'src/foundation/bitfield.dart';
27
export 'src/foundation/change_notifier.dart';
28
export 'src/foundation/collections.dart';
29
export 'src/foundation/consolidate_response.dart';
30
export 'src/foundation/constants.dart';
31
export 'src/foundation/debug.dart';
32
export 'src/foundation/diagnostics.dart';
33
export 'src/foundation/isolates.dart';
34
export 'src/foundation/key.dart';
35
export 'src/foundation/licenses.dart';
36
export 'src/foundation/node.dart';
37
export 'src/foundation/object.dart';
38
export 'src/foundation/observer_list.dart';
39
export 'src/foundation/platform.dart';
40
export 'src/foundation/print.dart';
41
export 'src/foundation/serialization.dart';
42
export 'src/foundation/stack_frame.dart';
43
export 'src/foundation/synchronous_future.dart';
Ian Hickson's avatar
Ian Hickson committed
44
export 'src/foundation/unicode.dart';