outline_material_icons icon indicating copy to clipboard operation
outline_material_icons copied to clipboard

Provides the new outline theme of material design icons from Google, for use in Flutter apps.

Results 8 outline_material_icons issues
Sort by recently updated
recently updated
newest added

Can this package be updated to support null safety (https://dart.dev/null-safety)? This should be a trivial change, and without it the dependency on outline_material_icons prevents one from running with sound null...

Added null support for latest sdk.

I use this package for my flutter_iconpicker package and my users needs nullsafety. So I did: `dart migrate --apply-changes` to be able to support nullsafety. There're no relevant changes, just...

Will this library get an update with the new icons like admin_panel_settings ? https://material.io/resources/icons/?icon=admin_panel_settings&style=baseline

https://github.com/lucaslcode/outline_material_icons/blob/1df0d40e4de2856d6b35c54ae54cb9ec5fa70418/lib/outline_material_icons.dart#L3041 Using out-of-class **`OMIconData()`** allows you to work dynamically with icons, for example: - **With `IconData`** ```dart // This can come from a remote JSON (HTTP)!!! List _userButtonList = [...

Even though the Dart style guides prefer lowerCamelCase, the Flutter `Icons` class uses underscore_separated constants. If I wanted to change a playlist_play icon, I'd be changing the code from `Icons.playlist_play`...