|
|
|
|
|
|
|
|
|
|
public interface RenderAnimatedOpacityMixin<T> : RenderObjectWithChildMixin<T> where T : RenderObject { |
|
|
|
|
|
|
|
int _alpha { get; } |
|
|
|
public new bool alwaysNeedsCompositing { |
|
|
|
int _alpha { get; set; } |
|
|
|
bool alwaysNeedsCompositing { |
|
|
|
bool _currentlyNeedsCompositing { get; } |
|
|
|
public Animation<float> opacity { |
|
|
|
bool _currentlyNeedsCompositing { get; set; } |
|
|
|
Animation<float> opacity { |
|
|
|
Animation<float> _opacity { get; } |
|
|
|
Animation<float> _opacity { get; set; } |
|
|
|
public bool alwaysIncludeSemantics { |
|
|
|
bool alwaysIncludeSemantics { |
|
|
|
bool _alwaysIncludeSemantics { get; } |
|
|
|
public void attach(PipelineOwner owner); |
|
|
|
public void detach(); |
|
|
|
bool _alwaysIncludeSemantics { get; set; } |
|
|
|
void attach(PipelineOwner owner); |
|
|
|
void detach(); |
|
|
|
public void _updateOpacity(); |
|
|
|
public void paint(PaintingContext context, Offset offset); |
|
|
|
public void visitChildrenForSemantics(RenderObjectVisitor visitor); |
|
|
|
public void debugFillProperties(DiagnosticPropertiesBuilder properties); |
|
|
|
void _updateOpacity(); |
|
|
|
void paint(PaintingContext context, Offset offset); |
|
|
|
void visitChildrenForSemantics(RenderObjectVisitor visitor); |
|
|
|
void debugFillProperties(DiagnosticPropertiesBuilder properties); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|