Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Last active December 9, 2018 17:02
Show Gist options
  • Save fabiomsr/e3287a61eed64bc0ffcfeaa4aca8a0a7 to your computer and use it in GitHub Desktop.
Save fabiomsr/e3287a61eed64bc0ffcfeaa4aca8a0a7 to your computer and use it in GitHub Desktop.
Flutter Hello World 2
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: Center(
child: Text("Hello, World", textAlign: TextAlign.center)
)
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment