x_icon 0.0.5 x_icon: ^0.0.5 copied to clipboard
part of flutter remote-ui project. dynamic and remote icon loader for flutter
[0.0.1] - Initial release #
[0.1.0] - (in development) #
RemoteIconData as factory or as IconData
// from
Icon(RemoteIconData.fromUri("~").icon);
// to
Icon(RemoteIconData.fromUri("~"));
// from
RemoteIcon(icon: RemoteIconData.fromUri("~").icon);
// to
RemoteIcon.fromUri("~");
[0.0.4] - major updates #
RemoteIconData -> XIconData RemoteIcon -> XIcon
both supports fromJson
XIconData now extends from IconData, so you can use it like so. Icon(XIconData("uri"))