return Obx(
()=> ListView.builder(
addAutomaticKeepAlives: true,
cacheExtent: 10,/* */
physics: const NeverScrollableScrollPhysics(),
itemCount: belirleyengun.length /* 5*/,
scrollDirection: Axis.vertical,
shrinkWrap: true,
itemBuilder: ((context, index) {
print('a');
}
);
It prints an equal to the length of the list. is there any possible way to add new item without rebuilding the whole list with provider riverpod or bloc or getx (i prefer getx solution so much)
my code is here i have tried with obx and getxcontroller the results were the same
2