Advertisement
k4ilham

flutter icon

Jul 17th, 2021
1,078
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.65 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. class IconWidget extends StatelessWidget {
  4.   @override
  5.   Widget build(BuildContext context) {
  6.     return Center(
  7.       child: Column(
  8.         mainAxisAlignment: MainAxisAlignment.center,
  9.         children: <Widget>[
  10.           Icon(Icons.check, size: 64.0, color: Colors.teal),
  11.           Icon(Icons.account_circle, size: 64.0, color: Colors.teal),
  12.           Icon(Icons.android, size: 64.0, color: Colors.teal),
  13.           Icon(Icons.iso, size: 64.0, color: Colors.teal),
  14.           Icon(Icons.home, size: 64.0, color: Colors.teal),
  15.           Icon(Icons.camera_alt, size: 64.0, color: Colors.teal),
  16.         ],
  17.       )
  18.     );
  19.   }
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement