Marko Filipović

Results 28 comments of Marko Filipović

not working even when setting the icon in a selector and then to drawable of an TextView

adding contentprovider and kpoet from [this answer](https://github.com/agrosner/DBFlow/issues/1723#issuecomment-894768231) worked in case of my project ``` kapt "com.github.agrosner.dbflow:processor:$dbflow_version" implementation "com.github.agrosner.dbflow:core:$dbflow_version" implementation "com.github.agrosner.dbflow:lib:$dbflow_version" implementation "com.github.agrosner.dbflow:coroutines:$dbflow_version" implementation "com.github.agrosner.dbflow:contentprovider:$dbflow_version" kapt 'com.squareup:javapoet:1.10.0' kapt 'com.github.agrosner:KPoet:1.0.0' ```

ok, disregard what is written underneath, it is all described here in the Wiki https://github.com/Baseflow/flutter-permission-handler/wiki/Changes-in-6.0.0#breaking-changes ____ I would like to suggest adding to docs (in your own words) that it...

any progress or solutions to this "direct local .aar file" problem?

@spidgorny Was anything done with the above mentioned suggestion? I'm also interested in everything mentioned

although I respect every effort to help the community by publishing libraries like this, I would like to suggest that we focus our efforts on another, more elaborate attempt to...

our app is not using Get, it has `locale: context.locale` set and still the language changes only if the whole screen is redrawn (ie. closed and opened again) - any...

> > our app is not using Get, it has `locale: context.locale` set and still the language changes only if the whole screen is redrawn (ie. closed and opened again)...

> I tried this solution which allows me to rebuild the whole widget tree by adding a new unique key every time the localization change. > > ``` > return...

> `if (newValue == LocaleKeys.arabic.tr()) { > this.setState(() { > dropdownValue = LocaleKeys.arabic.tr(); > > ``` > context.setLocale(Locale('ar')); > });` > ``` no, that does nothing...