• Ian Hickson's avatar
    Make BoxDecoration replaceable. · 2afa87df
    Ian Hickson authored
    Factor out a reusable interface called Decoration from BoxDecoration.
    
    Make all the consumers of BoxDecoration and the erstwhile BoxPainter
    into consumers of Decoration.
    
    Make a BoxPainter be something you get from a Decoration, rather than
    something to which you pass a BoxDecoration.
    
    Rename Shape to BoxShape now that it's documented specifically as
    applying to boxes.
    
    Move EdgeDims to its own file.
    
    Move FractionalOffset up so that it's with the other helper classes in
    its file rather than alone at the end.
    
    Minor change to RenderClipOval's hit testing to avoid taking an
    unnecessary square root.
    
    Rename BoxDecorationPosition to DecorationPosition since
    RenderDecoratedBox now takes any Decoration.
    
    Implement hit testing for rounded rects.
    
    Rename AnimatedBoxDecorationValue to AnimatedDecorationValue, and make
    it support lerping across any Decoration (by deferring to the objects
    involved).
    2afa87df
painting.dart 938 Bytes
// 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.

/// The Flutter painting library.
///
/// This library includes a variety of classes that wrap the Flutter
/// engine's painting API for more specialised purposes, such as painting scaled
/// images, interpolating between shadows, painting borders around boxes, etc.
///
/// This library depends only on the core Dart libraries and animation.dart.
/// Note: animation.dart depends on the `newton` package.
library painting;

export 'src/painting/basic_types.dart';
export 'src/painting/box_painter.dart';
export 'src/painting/colors.dart';
export 'src/painting/decoration.dart';
export 'src/painting/edge_dims.dart';
export 'src/painting/shadows.dart';
export 'src/painting/text_painter.dart';
export 'src/painting/text_style.dart';
export 'src/painting/transforms.dart';