Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Last active December 9, 2018 16:58
Show Gist options
  • Save fabiomsr/bcd41393c7ac78903b0a5602a09beff5 to your computer and use it in GitHub Desktop.
Save fabiomsr/bcd41393c7ac78903b0a5602a09beff5 to your computer and use it in GitHub Desktop.
Flutter Hello World 1
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: Padding(
padding: const EdgeInsets.only(top: 24.0),
child: Text("Hello, World")
)
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment