Skip to content

Instantly share code, notes, and snippets.

View hazzo's full-sized avatar

guidoec hazzo

  • Madrid, Spain
View GitHub Profile
@hazzo
hazzo / main.dart
Created November 14, 2022 10:07
Alert dialog
import 'package:flutter/material.dart';
void main() => runApp(App());
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Home(),