Sem Bauke

Results 186 comments of Sem Bauke

It was done automatically :) If you want to migrate more files, please do!

Hey @ShaunSHamilton, So you are suggesting adding the current badges from the forum onto the learning profile. Is this because of some unification? Shouldn't there be new badges that correlate...

Any updates on this @Nirajn2311 ?

@Art-auto You are welcome to work on this yourself 😄

Hey @bbsmooth, Last night there was a poor attempt to solve this, it did not work, and I went to bed. This commit will make it possible to switch between...

I ended up doing it like this @moNiti ```dart blockQuoteMatcher(): CustomRender.widget(widget: (code, child) { return Container( decoration: const BoxDecoration( border: Border( left: BorderSide( color: Color.fromRGBO(0x99, 0xc9, 0xff, 1), width: 2),...

Yes, I forgot to add that in my example: 1. add a Row widget 2. Make a for-loop that checks for the number of new lines: `for (var line in...

So for the ones wanting to lazy load your big html files this is how I did it. I started by making a method called `htmlHandler` this uses the `fluttter/html`...

Yep that was the best solution I could come up with.

> Is this true lazy loading? It seems like you lazy load each individual `Html` widget in your list, rather than lazy-loading the HTML content within those individual `Html` widgets....