Skip to content

Instantly share code, notes, and snippets.

@digitaljoni
Created March 17, 2020 05:08
Show Gist options
  • Select an option

  • Save digitaljoni/354e35fe2f249ba23d58a2720cc69cc1 to your computer and use it in GitHub Desktop.

Select an option

Save digitaljoni/354e35fe2f249ba23d58a2720cc69cc1 to your computer and use it in GitHub Desktop.
Sample Use of Gradient Icon
class IconSample extends StatelessWidget {
@override
Widget build(BuildContext context) {
return GradientIcon(
Icons.add_alert,
50.0,
LinearGradient(
colors: <Color>[
Colors.red,
Colors.yellow,
Colors.blue,
],
begin: Alignment.topLeft,
end: Alignment.bottomRight,
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment