narimetisaigopi

flutter_svg

Aug 22nd, 2020 (edited)
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. // link for free icons - https://www.flaticon.com
  2. // link for flutter_svg package - https://pub.dev/packages/flutter_svg
  3.  
  4. import 'package:flutter/material.dart';
  5. import 'package:flutter_svg/svg.dart';
  6.  
  7. class TestingScreen extends StatelessWidget {
  8. @override
  9. Widget build(BuildContext context) {
  10. return Scaffold(
  11. body: Container(
  12. alignment: Alignment.center,
  13. child: SvgPicture.asset(
  14. "assets/icons/balloons.svg",
  15. width: 160,
  16. height: 160,
  17. )),
  18. );
  19. }
  20. }
  21.  
Add Comment
Please, Sign In to add comment