可以在 riverpods 中嵌套 ConsumerWidgets 吗?
Is it ok to nest ConsumerWidgets in riverpods?
在Riverpods中,是否可以嵌套ConsumerWidgets?是这样的吗?我想这样做是为了让我的 api 保持分离,但感觉这可能会降低性能?
class Foo1 extends ConsumerWidget {
@override
Widget build(BuildContext context, ScopedReader watch) {
// watch something
return Container(
child: Foo2(),
);
}
}
class Foo2 extends ConsumerWidget {
@override
// watch something
Widget build(BuildContext context, ScopedReader watch) {
return Container();
}
}
在Riverpods中,是否可以嵌套ConsumerWidgets?是这样的吗?我想这样做是为了让我的 api 保持分离,但感觉这可能会降低性能?
class Foo1 extends ConsumerWidget {
@override
Widget build(BuildContext context, ScopedReader watch) {
// watch something
return Container(
child: Foo2(),
);
}
}
class Foo2 extends ConsumerWidget {
@override
// watch something
Widget build(BuildContext context, ScopedReader watch) {
return Container();
}
}