Code for adding Icon in Flutter App
import 'package:flutter/material.dart';
class IconExample extends StatelessWidget {
const IconExample({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Center(
child: Icon(
Icons.image,
size: 64.0,
color: Colors.red,
),
);
}
}
Comments
Post a Comment