mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* add path measure * fix typo * getBound and addPathWithMatrix * Add myself to Authors, add PathOps * fix linting issues * update licenses_flutter to add new files * Use matrix4 instead of matrix3 for consistency/interop * put pubspec back * fix bug in getSegment * fix typo * Add return value for PathOp * refactoring from review * refactoring from review - still TBD on computeMetrics() * add doc * lint issue * fix computeMetrics, add Path.from * add missing wireup for clone * change PathMetrics to iterable, fix bug with angle on Tangent * prefer std::make_unique * cleanup docs * add path measure * fix typo * getBound and addPathWithMatrix * Add myself to Authors, add PathOps * fix linting issues * update licenses_flutter to add new files * Use matrix4 instead of matrix3 for consistency/interop * put pubspec back * fix bug in getSegment * fix typo * Add return value for PathOp * refactoring from review * refactoring from review - still TBD on computeMetrics() * add doc * lint issue * fix computeMetrics, add Path.from * add missing wireup for clone * change PathMetrics to iterable, fix bug with angle on Tangent * prefer std::make_unique * cleanup docs * fix iterator bug * remove unnecessary clone for computeMetrics * fix some doc issues * fix PathMeasure iterator, extendWithPath, isClosed, and pubspec.lock * get rid of orElse; use StateException * StateError, not StateException * doc improvements and nits * add unit tests, fix bugs found during testing * fix two uncommited doc changes * one more * change sign of tangent angle, update docs * update unit tests for inverted angle * update tangent to include vector * Doc fixes * Fix MSVC compilation and unit test
34 lines
967 B
Dart
34 lines
967 B
Dart
// Copyright 2015 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.
|
|
|
|
/// Built-in types and core primitives for a Flutter application.
|
|
///
|
|
/// To use, import `dart:ui`.
|
|
///
|
|
/// This library exposes the lowest-level services that Flutter frameworks use
|
|
/// to bootstrap applications, such as classes for driving the input, graphics
|
|
/// text, layout, and rendering subsystems.
|
|
library dart.ui;
|
|
|
|
import 'dart:_internal' hide Symbol;
|
|
import 'dart:async';
|
|
import 'dart:collection' as collection;
|
|
import 'dart:convert';
|
|
import 'dart:developer' as developer;
|
|
import 'dart:math' as math;
|
|
import 'dart:nativewrappers';
|
|
import 'dart:typed_data';
|
|
|
|
part 'compositing.dart';
|
|
part 'geometry.dart';
|
|
part 'hash_codes.dart';
|
|
part 'hooks.dart';
|
|
part 'lerp.dart';
|
|
part 'natives.dart';
|
|
part 'painting.dart';
|
|
part 'pointer.dart';
|
|
part 'semantics.dart';
|
|
part 'text.dart';
|
|
part 'window.dart';
|