Skip to content

Instantly share code, notes, and snippets.

@bt1159
bt1159 / main.dart
Created December 1, 2023 20:18
Demonstrating spacing on Flutter icons
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Example(),
);