Skip to content

Instantly share code, notes, and snippets.

@5omar5
Created March 16, 2020 03:50
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 5omar5/830c226095505afd3955986424f2cef8 to your computer and use it in GitHub Desktop.
Save 5omar5/830c226095505afd3955986424f2cef8 to your computer and use it in GitHub Desktop.
u1_a3
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body:
Center(
child: Text('Omar antonio Medina Medrano')
),
appBar: AppBar(
title:Text('título')
),
)
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment