Serj Elokhin
Serj Elokhin
Use this ``` dispatch_async(dispatch_get_main_queue(), ^{ [[UIApplication sharedApplication] registerForRemoteNotifications]; }); ```
There already is BoxShape in flutter/painting.dart ``` enum BoxShape { /// An axis-aligned, 2D rectangle. May have rounded corners (described by a /// [BorderRadius]). The edges of the rectangle will...
Yes, it was a bad decision to store headers in Map instead of List. It makes me to perform value parsing. It may be better to store values with the...
Hi @evansherry! You image doesn't zoom in on double tap because it has original width equal to the constrained box, so the PhotoViewControllerDelegate.nextScaleState goes from PhotoViewScaleState.initial to PhotoViewScaleState.covering (by the...
I can confirm that the package really doesn't support the web platform. Flutter 3.13.6. flutter_html 2.2.1 Can you provide us with information about the web platform support plans, please?
@Sub6Resources just make it possible to change `WidgetSpan.alignment` outside the widget. It's hardcoded in your code now: ``` return WidgetSpan( alignment: PlaceholderAlignment.baseline, baseline: TextBaseline.alphabetic, child: CssBoxWidget.withInlineSpanChildren( key: context.key, ... ```
Another easy way is to expose the property `selectable` outside the `HtmlParser`. It's hardcoded now, just make it customizable in the `Html` widget. So, making the widget selectable can help...
> I respectfully vote against making it an option. This should work out of the box and if that means not using baseline alignment than that's probably fine. Why? Optionality...
The work is already done. Your suggestion is to do additional work to remove already written code or replace it with another hardcoded values. I suggest just exposing a couple...
Anyway, here is my PR if you'd like the solution https://github.com/Sub6Resources/flutter_html/pull/1191