nivle
nivle
@nicolaihenriksen oh, my bad, didn't think that the error message placement was also part of the material design. so I take it then that the error messages hovering over the...
@nicolaihenriksen I checked docs on material 3 and found [this](https://m3.material.io/components/text-fields/guidelines#9ad90554-a793-4506-9075-6812fd7b381a) The errors actually do seem to take their own space, and push the content down, though next to it, it...
> There is not an explicit flush because this library is intended to be used in long-running processes, so there is a background thread which queues and flushes writes on...
I ended up doing solving this like this, to solve some buffer issues, and some slow image printing issues. I found out that if the image width is above a...
> @nivle When you open an issue, please try to use [new issue template](https://github.com/flutter/flutter/issues/new/choose) and fill out requested details so that we'll have enough info to work with. > >...
> > Channel stable, 3.3.10, > > Thanks for the update. This is old version of stable. Can you upgrade to latest stable or master and re-run your scenario to...
> > it does still give the error on the barcode scanner. > > What error does it throw ? on the barcode scanner means while trying to scan the...
> Thanks for the update. Can you provide us complete runnable code sample along with replication steps that we can follow ? I pasted the main code above. All you...
You can also just do something like this: ``` firstname lastname language private sortingValues = { firstName: '', lastName: '', language: '' }; public someMethod(event: any): void { this.sortingValues[event.active] =...
> > You can also just do something like this: > > ``` > > > > firstname > > lastname > > language > > > > > >...