outline_material_icons icon indicating copy to clipboard operation
outline_material_icons copied to clipboard

support nullsafety

Open Ahmadre opened this issue 3 years ago • 3 comments

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 the sdk version changed.

Ahmadre avatar Feb 20 '21 19:02 Ahmadre

Any chance to get this merged soon? It's one of the dependencies holding me up from migrating to null-safety.

emlynmac avatar May 10 '21 22:05 emlynmac

@emlynmac As a workaround you should be able to use this in your pubspec.yaml:

outline_material_icons:
  git:
    url: https://github.com/Ahmadre/outline_material_icons

nilsreichardt avatar May 11 '21 10:05 nilsreichardt

Any chance to get this merged soon? It's one of the dependencies holding me up from migrating to null-safety.

The outlined icons are now integrated in new flutter versions. Including rounded and so on.

But regarding the null safety problem: just add:

// @dart=2.9

on top of your main.dart file

Ahmadre avatar May 11 '21 20:05 Ahmadre