ui.dart 1.1 KB
Newer Older
M
Michael Goderbauer 已提交
1
// Copyright 2013 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

I
Ian Hickson 已提交
5 6
/// Built-in types and core primitives for a Flutter application.
///
7 8
/// To use, import `dart:ui`.
///
I
Ian Hickson 已提交
9
/// This library exposes the lowest-level services that Flutter frameworks use
10 11
/// to bootstrap applications, such as classes for driving the input, graphics
/// text, layout, and rendering subsystems.
A
Adam Barth 已提交
12
library dart.ui;
13

14
import 'dart:_internal' hide Symbol; // ignore: import_internal_library, unused_import
15
import 'dart:async';
16
import 'dart:collection' as collection;
17 18
import 'dart:convert';
import 'dart:developer' as developer;
19
import 'dart:io'; // ignore: unused_import
B
Ben Konyi 已提交
20
import 'dart:isolate' show SendPort;
21
import 'dart:math' as math;
22 23 24 25
import 'dart:nativewrappers';
import 'dart:typed_data';

part 'compositing.dart';
26
part 'geometry.dart';
27 28
part 'hash_codes.dart';
part 'hooks.dart';
B
Ben Konyi 已提交
29
part 'isolate_name_server.dart';
30 31 32
part 'lerp.dart';
part 'natives.dart';
part 'painting.dart';
33
part 'plugins.dart';
34
part 'pointer.dart';
35
part 'semantics.dart';
36 37
part 'text.dart';
part 'window.dart';