foundation.dart 1.45 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
// 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;

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

20
// Examples can assume:
21
// String _name;
22 23 24
// bool _first;
// bool _lights;
// bool _visible;
25
// bool inherit;
26 27
// int columns;
// int rows;
28
// class Cat { }
29 30
// double _volume;
// dynamic _calculation;
31 32
// dynamic _last;
// dynamic _selection;
33

34
export 'src/foundation/annotations.dart';
35
export 'src/foundation/assertions.dart';
36
export 'src/foundation/basic_types.dart';
37
export 'src/foundation/binding.dart';
38
export 'src/foundation/change_notifier.dart';
39
export 'src/foundation/collections.dart';
40
export 'src/foundation/debug.dart';
41
export 'src/foundation/diagnostics.dart';
42
export 'src/foundation/key.dart';
43
export 'src/foundation/licenses.dart';
44
export 'src/foundation/node.dart';
45
export 'src/foundation/observer_list.dart';
46
export 'src/foundation/platform.dart';
47
export 'src/foundation/print.dart';
48
export 'src/foundation/profile.dart';
49
export 'src/foundation/serialization.dart';
50
export 'src/foundation/synchronous_future.dart';
Ian Hickson's avatar
Ian Hickson committed
51
export 'src/foundation/unicode.dart';