Skip to content

Instantly share code, notes, and snippets.

@omariosouto
Last active May 3, 2019 17:18
Show Gist options
  • Select an option

  • Save omariosouto/a5d4f1af2b82e30e023735ac121736e7 to your computer and use it in GitHub Desktop.

Select an option

Save omariosouto/a5d4f1af2b82e30e023735ac121736e7 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Minha Primeira App'),
),
body: Text('Hello world :)')
),
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment