StateManagementType enum

State management type selection.

Determines which state management solution FKernal uses internally. Each option requires the corresponding package to be added as a dependency.

Inheritance
Available extensions

Values

riverpod → const StateManagementType

Riverpod (default) - Requires flutter_riverpod

bloc → const StateManagementType

Bloc/Cubit - Requires flutter_bloc

getx → const StateManagementType

GetX - Requires get

mobx → const StateManagementType

MobX - Requires mobx and flutter_mobx

signals → const StateManagementType

Signals - Requires signals_flutter

provider → const StateManagementType

Provider - Requires provider

none → const StateManagementType

None - Use FKernal's built-in minimal state (ValueNotifier-based) No external dependencies required

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Constants

values → const List<StateManagementType>
A constant List of the values in this enum, in order of their declaration.