awesome_extensions
awesome_extensions copied to clipboard
An extension to the widget that helps to reduce the boilerplate and adds some helpful methods. and you can make responsive design.
we need to extract dart-only extension to be able use them in dart-only projects
For instance `void pop({result}) => Navigator.pop(this, result);` should be `void pop([T? result]) => Navigator.pop(this, result);` Also, why `result` is named here makes no sense to me at all. There's so...
### Overview This PR addresses test failures in the AsyncSnapshotExt extension and enhances the overall test coverage. The following key changes are included: 1. **Fixes Test Failures**: - Corrected issues...