glanium
glanium
If possible, increase [sqlite_max_variable_number](https://www.sqlite.org/limits.html#max_variable_number). The default value of SQLITE_LIMIT_VARIABLE_NUMBER in the latest sqlite is 32766. When dealing with large amounts of data, the default 32766 is too small and painful....
**Description:** Views hidden behind the bottom sheet respond to touch events. **Source code:** In your Catalog app, Change [cat_bottomsheet_fragment.xml](https://github.com/material-components/material-components-android/blob/master/catalog/java/io/material/catalog/bottomsheet/res/layout/cat_bottomsheet_fragment.xml) as following ```xml ``` Then run catalog app, Expand standard bottom...
Surprisingly, Dart/Flutter does not support [Unicode normalization](https://unicode.org/reports/tr15/) default. So please support Unicode normalization. thanks.
I tried creating new project and launching app in profile mode and release mode for android devices. I got following errors at runtime. Invalid argument(s): Couldn't resolve native function 'icu4x_Locale_from_string_mv1'...
```dart final i = Intl(locale: Locale.parse('en-US')); final c = i.collation(CollationOptions(numeric: true)); final lis = ['0', '1', '2', '10']; lis.sort((left, right) => c.compare(left, right)); log('$lis'); ``` [log] [0, 1, 10, 2]...
Default locale always fails. ```dart final intl = Intl(); //
Generating java.io.CharBuffer binding causes conflicts. Error: Can't declare a member that conflicts with an inherited one. bool hasArray() { Error: Can't declare a member that conflicts with an inherited one....