Marcelo Glasberg
Marcelo Glasberg
I have a 4k Samsung monitor in the center, and 2 smaller full-hd Dell monitors on each side. The 2 dells are exactly the same model. It detects the left...
The Flutter app crashes when I try to inspect (watch) a value with the debugger. A simple way to reproduce this can be found here: https://github.com/marcglasberg/fast_immutable_collections/issues/42 By following the explanation...
No setter do text, faça isso: @override set text(String newText) { if (super.text != newText) { value = value.copyWith( text: newText, selection: TextSelection.collapsed(offset: (newText ?? '').length), composing: TextRange.empty); } }...
Package audio_recorder depends on **file: ^5.0.4** As per Flutter 1.22 this needs to be updated to **file: ^6.0.0-nullsafety.2**
In the declaration: bool contains(Object Character); The identifier `Character` should be lowercase ➜ `character` But, even so, the analogy with a collection of characters is not a good one. If...
The debugger lets us inspect object values. One way is navigating through the object's properties, one by one. But that can be difficult. Another way is just pressing the `View`...
Seria possível saber qual o tipo de teclado que está aberto? Por exemplo, se o teclado aberto é o teclado numérico, ou o teclado qwerty comum? No builder poderia ter...
Internal: b/137284394 Here (https://github.com/flutter/flutter/issues/4478) Hixie commented: *"Ok the plan is that rather than truncating individual characters until it fit, we will truncate entire atomic positioned glyph sequences (e.g. whole ligatures...
To make it work for https://pub.dev/packages/i18n_extension In `Set Up Extract String`: ``` $$.i18n ``` There is no need for a key. Just keep the original string. For example `Text("Home")` would...
Add support for `IList`, `ISet`, `IMap`, `IMapOfSets`, `ListSet` and `ListMap` classes from https://pub.dev/packages/fast_immutable_collections