Flutter SVG - kylinhuang/flutterDemo GitHub Wiki
Flutter SVG
how to use svg img in flutter
flutter_svg
use flutter_svg
Read the documentation add dependencies and add svg images
final Widget facebook = new SvgPicture.asset(
'assets/facebook.svg',
);
final Widget google = new SvgPicture.asset(
'assets/google.svg',
);
------
// google
Padding(
padding: EdgeInsets.only(top: 10.0),
child: GestureDetector(
// onTap: () => showInSnackBar("Google button pressed"),
child: new SizedBox(
width: 50.0,
height: 50.0,
child: google,
),
),
),