Viewing profile — yjbanov
yjbanov
HN member- Joined
- Thu, Nov 14, 2013, 7:00 PM UTC
- HN karma
- 55
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About yjbanov
No profile information was provided.
Recent public activity
-
comment
Comment #33602377
(disclaimer: I work on Flutter Web) It's mostly about algorithmic trade-offs. When you know your content layout is static and is highly biased towards vertical scrolling, you take …
-
comment
Comment #30437082
(disclaimer: I work on Flutter Web) Curious what's not working in Flutter's accessibility. We are aware of multiple bugs, some specific to a particular assistive tech not interpret…
-
comment
Comment #26338552
Flutter has accessibility. We create a html tree with ARIA attributes. It's not there if you don't have assistive technology enabled, however.
-
comment
Comment #26338536
Depends on what the extension is trying to do with your app. If it's scanning your html then no, it won't work.
-
comment
Comment #26335441
There are a few things that WASM can do that JS can't (at least not now): - Memory management without GC - Unboxed data structures - SIMD - Shared-memory multi-threading - Precompi…
-
comment
Comment #26333981
(disclaimer: I work on the Flutter team) There's no difference between CanvasKit and HTML as far as interactions are concerned. The differences are in pixels and performance. If th…
-
comment
Comment #26333953
(disclaimer: I work on the Flutter team) We certainly don't think Flutter should replace HTML or other frameworks. We hope Flutter will work well for many use-cases, but the web is…
-
comment
Comment #26333870
Have you tried --web-renderer=auto?
-
comment
Comment #26333861
(disclaimer: I work on the Flutter team) The "Create account" link isn't popping up the right-click menu because it doesn't use the Link widget. You'd get the same thing in plain H…
-
comment
Comment #24927832
Do give `--dart-define=FLUTTER_WEB_USE_SKIA=true` a try (`flutter run` and `flutter build` take this option, which we hopefully will rename to something more reasonable soon). If t…
-
comment
Comment #24927816
(disclaimer: I work on Flutter Web) Vimium is an interesting use-case. I've never heard of this extension. We have in the past enabled accessibility DOM all the time, but due to pe…
-
comment
Comment #24927669
While Flutter makes text selection an explicit choice for developers, Text vs SelectableText, for some reason Text ended up being most used. This is likely because SelectableText c…
-
comment
Comment #24927540
I hear you. There's a link widget coming, multiple browser history models (we've only supported URL fragments, but are adding pushState, and custom URL strategies, as well as navig…
-
comment
Comment #24922849
(disclaimer: I work on Flutter Web) We actually use plain standard HTML and ARIA attributes for accessibility. If you don't see them, try enabling a screen reader (e.g. TalkBack on…
-
comment
Comment #18605291
WebAssembly compilation is a little orthogonal to getting the framework and rendering system up and running. We do not have to wait for WebAssembly to make progress on the UI side …
-
comment
Comment #7756222
All these benchmarks have "asmjs" in their names, which tells me they are not benchmarking idiomatic JavaScript, but JS generated by emscripten. If that's the case, they do not rep…