ReactiveSwitch class
- Inheritance
-
- Object
- DiagnosticableTree
- Widget
- StatefulWidget
- ReactiveSwitch
Constructors
- ReactiveSwitch({Key? key, Icon? darkmodeIcon = const Icon(Icons.dark_mode), Icon? lightModeIcon = const Icon(Icons.sunny), Color? activeCol = Colors.grey, Color? inactiveIconColor = Colors.black87})
-
The
const ReactiveSwitchconstructor is defining the parameters and default values for theReactiveSwitchwidget.const
Properties
- activeCol → Color?
-
The line
Color? activeCol;is declaring a final variable namedactiveColof typeColor?. The?indicates that the variable can be nullable, meaning it can have a value ofnull. This variable is used to specify the color of the switch when it is in the active state.final - darkmodeIcon → Icon?
-
The line
Icon? darkmodeIcon;is declaring a final variable nameddarkmodeIconof typeIcon?. The?indicates that the variable can be nullable, meaning it can have a value ofnull.final - hashCode → int
-
The hash code for this object.
no setterinherited
- inactiveIconColor → Color?
-
The line
Color? inactiveIconColor;is declaring a final variable namedinactiveIconColorof typeColor?. The?indicates that the variable can be nullable, meaning it can have a value ofnull. This variable is used to specify the color of the switch's thumb icon when it is in the inactive state.final - key → Key?
-
Controls how one widget replaces another widget in the tree.
finalinherited
- lightModeIcon → Icon?
-
The line
Icon? lightModeIcon;is declaring a final variable namedlightModeIconof typeIcon?. The?indicates that the variable can be nullable, meaning it can have a value ofnull.final - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
createElement(
) → StatefulElement -
Creates a StatefulElement to manage this widget's location in the tree.
inherited
-
createState(
) → State< ReactiveSwitch> -
Creates the mutable state for this widget at a given location in the tree.
override
-
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, int wrapWidth = 65}) → 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