Parse-SDK-Flutter
Parse-SDK-Flutter copied to clipboard
Use all parameters of ParseLiveGridWidget
New Feature / Enhancement Checklist
- [x] I am not disclosing a vulnerability.
- [x] I am not just asking a question.
- [x] I have searched through existing issues.
Current Limitation
Some of the parameters/attributes of the ParseLiveGridWidget are not used.
Feature / Enhancement Description
We should use all the parameters and deprecate those that can't be used.
Additionally we should 'forward' every parameter of the GridView.
Example Use Case
scrollDirection: Axis.horizontal (See #740)
Alternatives / Workarounds
n/a
Thanks for opening this issue!
- 🎉 We are excited about your ideas for improvement!
In the implementation scroll direction was never added that’s why I did a pull request.
GridView.builder( //////////it should say here scrollDirection: widget.scrolDirection////////// itemCount: liveGrid.size, gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( crossAxisCount: widget.crossAxisCount, crossAxisSpacing: widget.crossAxisSpacing, mainAxisSpacing: widget.mainAxisSpacing, childAspectRatio: widget.childAspectRatio),
Same for scrollPhysics, scrollController, shrinkWrap...
Your PR got closed since we deleted the development branch. It's not because of your changes.