Jakub Sz

Results 19 issues of Jakub Sz

I use android-priority-jobqueue. However, sometimes I have the case that phone is going offline and the queue isn't flushed immediately. How to force JobManager to flush the queue manually?

When I swipe only in y position and card doesn't change its x position, onClick event is called on this card.

It's not obvious how to implement a master detail layout using GetX (also with Bindings). Scenario: On a small screen, it would redirect to a different route (using GetX routing)...

The background task is executing as expected as long as the app is open, however, when I close the app (not minimize). The background task finishes too. Sample code: ```...

bug

Hi, When I'm using your library, I'm getting lint errors anyway. Shall I @Suppress them or there is a better way?

Hey, I wanna use this library to generate drawable for actions in ActionBar, unfortunately icons are too small, cause padding is to big. May I somehow make it smaller?

I run your `reusable_video_list` sample without any changes on iOS simulator, and I'm getting the following error ``` ======== Exception caught by rendering library ===================================================== The following assertion was thrown...

new issue

I introduced the ability to initialize `TrimEditor` with predefined start and end values. The sample usage looks like: ``` child: TrimEditor( viewerHeight: 50.0, viewerWidth: MediaQuery.of(context).size.width, initStartDuration: Duration(seconds: 1), initEndDuration: Duration(seconds:...

`seekTo` refreshes `video_player`. However, to refresh it on `iOS` it needs to be played. Before (not refreshed): ![before](https://user-images.githubusercontent.com/2264901/102816488-61ea4880-43ce-11eb-981f-5c47af4a15d3.gif) After (refreshed) ![after](https://user-images.githubusercontent.com/2264901/102816507-6c0c4700-43ce-11eb-9f5a-4530e8f38d8e.gif)

`TrimEditor` had `maxVideoLength`. However, `minVideoLength` was missing. I introduced it.