Flutter Riverpod State Management Use this skill when building Flutter state management with and . Core Rule - Use for read-only values and dependency wiring. - Use for small mutable state. - Use for one-shot async loading. - Use for reactive streams. - Use or for feature state that needs mutation methods. - Use for short-lived state. - Use when provider output depends on an argument. - Use in Flutter apps. - If you use , you usually do not add separately because the Flutter package brings it in transitively. - Current stable line is Riverpod 3.x ( 3.2.1, 3.3.1). Decision Guide Choose Riverpo…