We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PagewiseGridView.count Android/IOS Fast sliding app abnormal exita
---------------------------------code----------------------------------------
RefreshIndicator( onRefresh: () async { Provider.of<MaterialCategoryViewModel>(context, listen: false).refresh(); controller.reset(); }, child: Consumer<bool>(builder: (_, data, __) { if (data) { return EmptyWidget( content: 'not item', ); } else { return PagewiseGridView<MaterialItem>.count( addAutomaticKeepAlives: false, pageLoadController: controller, loadingBuilder: (_){ return Column( children: [ Padding( padding: EdgeInsets.only(top: 26.h), child: CircularProgressIndicator(), ), ], ); }, crossAxisSpacing: 20.w, mainAxisSpacing: 20.w, childAspectRatio: 1, crossAxisCount: 2, itemBuilder: (context, entity, index) { return InkWell( onTap: () { Navigator.of(context).pushNamed(Routes.material_detail, arguments: entity.id); }, child: Container( child: CachedNetworkImage( imageUrl: ImageUrlUtil.getUrl(entity.cover), fit: BoxFit.cover, ), ), ); }, ); } }), );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
PagewiseGridView.count
Android/IOS
Fast sliding app abnormal exita
---------------------------------code----------------------------------------
The text was updated successfully, but these errors were encountered: