ThreeCirclesBackground class

Inheritance

Constructors

ThreeCirclesBackground({Key? key, required Size sizeOfScreen, GradientColor gradientColor = GradientColor.blue, Widget? child, List<List<Color>>? customColors})

Properties

child Widget?
Child to be above the items
finalinherited
circles List<CircleInfo>
List of CircleInfo to be made
finalinherited
customColors List<List<Color>>?
Extends from CirclesBackground All the parameters like sampleRedColors or sampleData are static because the user can use them if he wants. There are some parameters I didn't want the user to use like _getColor If you chose GradientColor.custom you need to provide customColors for the circles
final
hashCode int
The hash code for this object.
no setterinherited
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

build(BuildContext context) Widget
Describes the part of the user interface represented by this widget.
inherited
buildCircle(CircleInfo circle) Widget
Creates each item
inherited
createElement() StatelessElement
Creates a StatelessElement to manage this widget's location in the tree.
inherited
debugDescribeChildren() List<DiagnosticsNode>
Returns a list of DiagnosticsNode objects describing this node's children.
inherited
debugFillProperties(DiagnosticPropertiesBuilder properties) → void
Add additional properties associated with the node.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDiagnosticsNode({String? name, DiagnosticsTreeStyle? style}) DiagnosticsNode
Returns a debug representation of the object that is used by debugging tools and by DiagnosticsNode.toStringDeep.
inherited
toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) String
A string representation of this object.
inherited
toStringDeep({String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a string representation of this node and its descendants.
inherited
toStringShallow({String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a one-line detailed description of the object.
inherited
toStringShort() String
A short, textual description of this widget.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

sampleBlueColors List<List<Color>>
Colors for GradientColor.blue
getter/setter pair
sampleRedColors List<List<Color>>
The sample data were created original by the developer of this package Colors for GradientColor.red
getter/setter pair

Static Methods

sampleData(Size sizeOfScreen, List<List<Color>> colors) List<CircleInfo>
Creates List of CircleInfo as a sample data The order is specially designed for Privacy Guard application.