Skip to content

Instantly share code, notes, and snippets.

@manofi21
Created August 30, 2019 16:42
Show Gist options
  • Save manofi21/3d18ebfde5acfd7fc6a18d8e996577ac to your computer and use it in GitHub Desktop.
Save manofi21/3d18ebfde5acfd7fc6a18d8e996577ac to your computer and use it in GitHub Desktop.
how to show icon in dart
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home:Icon(
Icons.image,
size: 64.0,
color: Theme.of(context).primaryColor,
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment