Eric Dhom

Results 7 issues of Eric Dhom

A button displaying a square root does not respond since the square root claims the gesture. The following does not work: ``` GestureDetector( onTap: () => print('This button responds'), child:...

If you rebuild every frame, the square root cannot be displayed at all. ``` AnimatedBuilder( animation: _someAnimationController, builder: (context, child) { return Math.tex(r'\sqrt{2}'); }, ) ```

The [font-family attribute](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/font-family) in the SVG standard is a prioritized list of font family names and/or generic family names. When exporting svgs with referenced text, sometimes fallback fonts are added,...

enhancement
fixed in repo

To authorize via `withCredentials`, one must add `useCookies` as a header. This functionality is really hidden. It's unfortunate that this flag cannot be exposed in the constructor, but having the...

This allows to authenticate cors requests with credentials from the browser cache. See `withCredentials`: https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/withCredentials

Hi @matthew-carroll, hi @angelosilvestre :) Here's a PR with failing tests following up on your comment [here](https://github.com/superlistapp/super_editor/issues/2424#issuecomment-2524134384). I also added some background below to motivate why I think this is...

The `AttributedTextMarkdownSerializer` places markdown formatting symbols according to the offset of attribution markers. This results in invalid markdown, as the markdown standard doesn't allow leading/trailing whitespaces. I'm unsure whether the...

type_bug