Alexander Zub

Results 24 issues of Alexander Zub

**Description** Sometimes you want to recreate Repository. Usually repositories have StreamControllers for entity streams. ```dart class EntityRepository { final entityUpdated = StreamController.broadcast(); final entityCreated = StreamController.broadcast(); final entityDeleted = StreamController.broadcast();...

It would be great to see, how to properly implement refreshing + pagination + search.

good first issue
example

Changes, that fix incorrect calculation of deltaBottom in horizontal lists

Element is SizedBox(width: 20, height: 60) InviewList is horizontal (Axis.horizontal) In 'isInViewPortCondition' I still receive such calculations: final width = deltaTop - deltaBottom. (60) But it should be 20. deltaTop...

For example, I have 1 use case, it has 3 dependencies - Session, ProductRepository, and UserRepository; repositories depend on session. Could I pass single SQLAlchemy session to all them? When...

**Is your feature request related to a problem? Please describe.** PATCH REST requests, for example, are hard to do. Photo's `null` is meaningful. If we send `photo == null`, then...

Type: enhancement

I would like to see Jiffy as a type-safe solution. Use case: You have DateTime everywhere, but you decide to write a custom Date class (because you only need dates...

``` class SettingsBloc { final Event event; SettingsBloc(@factoryParam this.event); } ``` The call `getIt()` works without crashes. But it shouldn't. Why missing required parameter is considered expected behavior, and it...

bug
enhancement

Also, I propose to rename SliverClip to SliverClipRect to align with Flutter naming for Box-based widgets.

enhancement
question