mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Each layer is supposed to reexport the parts of the previous layer that are part of its API. - In painting.dart, export from dart:ui all the Canvas-related APIs that make sense to be used at higher levels, e.g. PaintingStyle. - Delete painting/shadows.dart. It was dead code. - In rendering/object.dart, export all of painting.dart. - In widgets/basic.dart, export all of painting.dart and animation.dart. Some classes in animation/ are renamed to make this less disruptive and confusing to the namespace. - Split out Stocks back into an import model rather than a part model, so that it's easier to manage its dependencies on a per-file basis. - Move Ticker to scheduler library. - Remove as many redundant imports as possible now. - Some minor nit picking cleanup in various files.
26 lines
868 B
Dart
26 lines
868 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.
|
|
|
|
import 'dart:async';
|
|
import 'dart:typed_data';
|
|
import 'dart:ui' as ui show Image, decodeImageFromDataPipe, decodeImageFromList;
|
|
|
|
import 'package:mojo/core.dart' show MojoDataPipeConsumer;
|
|
|
|
Future<ui.Image> decodeImageFromDataPipe(MojoDataPipeConsumer consumerHandle) {
|
|
Completer<ui.Image> completer = new Completer<ui.Image>();
|
|
ui.decodeImageFromDataPipe(consumerHandle.handle.h, (ui.Image image) {
|
|
completer.complete(image);
|
|
});
|
|
return completer.future;
|
|
}
|
|
|
|
Future<ui.Image> decodeImageFromList(Uint8List list) {
|
|
Completer<ui.Image> completer = new Completer<ui.Image>();
|
|
ui.decodeImageFromList(list, (ui.Image image) {
|
|
completer.complete(image);
|
|
});
|
|
return completer.future;
|
|
}
|