RC
Size: a a a
RC
AT
AT
di
AT
RC
di
RC
Z
CustomScrollView(»
controller: scrollController,
slivers: <Widget>[
ValueListenableBuilder(
valueListenable: Hive.box<Car>(HiveBoxes.car).listenable(),
builder: (context, Box<Car> box, _) {
if (box.values.isEmpty) {
return //и здесь я хочу вывести 2 виджета
//Text('efefweffwe'); - 1 виджет
//SliverGrid(); - 2 виджет
}});])
RV
Z
RC
RV
RC
SliverList(
delegate: SliverChildBuilderDelegate(
(ctx, i) => SettingListItem(state.settingsList[i]),
childCount: state.settingsList.length,
),
),
RC
RC
RV
RV
RC