Skip to content

Instantly share code, notes, and snippets.

@Dviejopomata
Created January 21, 2020 22:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dviejopomata/447b7ba4dc49ca6b2a70764eec7fe630 to your computer and use it in GitHub Desktop.
Save Dviejopomata/447b7ba4dc49ca6b2a70764eec7fe630 to your computer and use it in GitHub Desktop.
Hola mun
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Scaffold(
body: Center(
child: Text("Todo bien? Todo Correcto?"),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment