gskinnerTeam / flutter_vignettes

A collection of fun Flutter experiments, created by gskinner, in partnership with Google.
https://flutter.gskinner.com
MIT License
4.54k stars 990 forks source link

Query related to change the icon of nav bar #15

Closed RomeoDar closed 4 years ago

RomeoDar commented 4 years ago

I want to change the icons of the nav bar (i'm new to flutter), as you used path/canvas to create icons. my question is how to convert images/icons into path/canvas code as: ui.Path()..addRRect(RRect.fromLTRBXY(-12, -12, -2, -2, 2, 2)), ui.Path()..addRRect(RRect.fromLTRBXY(2, -12, 12, -2, 2, 2)), ui.Path()..addRRect(RRect.fromLTRBXY(-12, 2, -2, 12, 2, 2)), ui.Path()..addRRect(RRect.fromLTRBXY(2, 2, 12, 12, 2, 2)),

how to convert images/icons to above code, or how to add images/icons instead of defining path/canvas (custom painting)