- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在使用 Riverpod 作为我的状态管理工具时,我一直在使用我发现的反模式。我做了用户问的this question did: 更新你想改变的属性并添加state = state
。这个解决方案一直有效,直到 state_provider 包更新到 0.7.0 以上,之后这个解决方案完全停止工作。
我一直在尝试在下面的线程中使用的解决方案,但这也不会为我重建 UI。谁能告诉我我在这里做错了什么?我觉得下面的解决方案应该可行,因为这基本上是您对任何其他状态管理包(例如 Redux)所做的。
我的状态模型、通知程序和提供程序
import 'package:hooks_riverpod/hooks_riverpod.dart';
class Test {
Test({this.prop1, this.prop2});
String? prop1;
int? prop2;
}
class TestNotifier extends StateNotifier<Test> {
TestNotifier() : super(Test());
void update() {
state.prop2 ??= 0;
state = state..prop2 = state.prop2! + 1;
}
}
final StateNotifierProvider<TestNotifier, Test> testProvider =
StateNotifierProvider((ref) => TestNotifier());
完整的 main.dart 文件
import 'package:flutter/material.dart';
import 'package:hooks_riverpod/hooks_riverpod.dart';
import 'package:practice_buddy/state/test_state.dart';
void main() {
runApp(const ProviderScope(child: MyApp()));
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends HookConsumerWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
Widget build(BuildContext context, WidgetRef ref) {
final _testProvider = ref.watch(testProvider);
final _testNotifier = ref.watch(testProvider.notifier);
return Scaffold(
appBar: AppBar(
title: Text(title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'You have pushed the button this many times:',
),
Text(
'${_testProvider.prop2 ?? 0}',
style: Theme.of(context).textTheme.headline4,
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: () => _testNotifier.update(),
tooltip: 'Increment',
child: const Icon(Icons.add),
), // This trailing comma makes auto-formatting nicer for build methods.
);
}
}
Pubspec 显示包版本
dependencies:
cloud_firestore: ^3.1.7
firebase_auth: ^3.3.6
firebase_core: ^1.12.0
flutter:
sdk: flutter
flutter_hooks: ^0.18.2
hooks_riverpod: ^1.0.3
我的 Flutter 版本是 2.8.1。
最佳答案
这可以通过在更新时传递一个新实例来解决。
void update() {
state.prop2 ??= 0;
state = state.copyWith(prop2: state.prop2! + 1);
}
在模型类 copyWith
构造函数上。
Test copyWith({
String? prop1,
int? prop2,
}) {
return Test(
prop1: prop1 ?? this.prop1,
prop2: prop2 ?? this.prop2,
);
}
关于flutter - Riverpod - 更新 StateNotifier 的单个属性时重建屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70923734/
我正在开发一个新的应用程序并使用状态通知器测试 Riverpod,并且有一个关于在构建页面时可以在哪里加载初始数据的问题。 我有以下状态类: abstract class SalesOrderList
我想手动覆盖我的 StateNotifierProvider 状态以进行测试。可以使用 ProviderContainer 或 ProviderScope 覆盖提供程序。但它只提供覆盖通知程序的选项,
在使用 Riverpod 作为我的状态管理工具时,我一直在使用我发现的反模式。我做了用户问的this question did: 更新你想改变的属性并添加state = state。这个解决方案一直有
我是 flutter 和 riverpod 的新手,所以如果问题不清楚,我非常抱歉,如果是这种情况,请告诉我 我有 2 个提供程序,一个监听 FireStore 集合的实时变化,另一个是列表服务,用于
我正在关注 Resocoder tutorial关于如何使用 RiverPod 和 StateNotifier 管理状态。 关于如何在初始加载时使用默认值调用 .getWeather 让我大吃一惊。该
我正在关注 Resocoder tutorial关于如何使用 RiverPod 和 StateNotifier 管理状态。 关于如何在初始加载时使用默认值调用 .getWeather 让我大吃一惊。该
我想学习如何使用 Riverpod ,因此为此,我正在实现一个小应用程序,该应用程序显示一个项目列表和一个按钮,该按钮在点击时将一个虚拟项目添加到列表中。 问题背景 在以下应用中按下按钮会按预期工作(
我有下面的示例,它确实刷新了数据,但没有按预期提供微调器。我尝试使用 ref.listen 切换到异步加载,我尝试在调用前等待,即使它没有意义。 我尝试了 ref.refresh、ref.invali
我是一名优秀的程序员,十分优秀!