Catalin Morosan
Catalin Morosan
In my adapter I fetch images from the Internet via the Picasso library and I use a placeholder image while the download is in progress. In some cases, the placeholder...
Take the following class. ``` @freezed abstract class DataEvent with _$DataEvent { factory DataEvent.versionNameRefreshed(String versionName) = VersionNameRefreshed; factory DataEvent.userRefreshed({@required User user}) = UserRefreshed; factory DataEvent.signedOut() = SignedOut; } ``` One...
I can't seem to vertically center the SwipeStack inside any ViewGroup. I've tried inside a FrameLayout, RelativeLayout and LinearLayout. Is it possible? If not, any hints on how I can...
Starting from Android 24, you cannot use file:// schemas to share content to other apps. https://commonsware.com/blog/2016/03/14/psa-file-scheme-ban-n-developer-preview.html The library should use a FileProvider to share the logs with other apps. Keep...
When using autofocus, the suggestions box opens and closes really fast when showing the widget for the first time. I need autofocus so I can make the keyboard pop up....
The backend sends me gif urls but the urls don't have any extension. Unfortunately, this package does not detect that it is a gif and fails to show it. One...
Hi. Can you please update the widget projection sample so the widget is drawn perfectly over the detected image? Matrix operations give me headaches :) Several people have asked this...
Hi. Sharing to Twitter on iOS does not seem to work. Nothing happens. The same call works correctly on Android. `SocialShare.shareTwitter(text, url: url)` What may be the cause? I have...
I am reading a DataMatrix file and the result is stored in `ScanResult` as a `String` field called `rawContent`. However, the data stored in the DataMatrix is data compressed with...
I've added a STOP action button for the foreground service notification and I receive the tap but the service does not receive the stopService message. Is this an issue or...