Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Last active December 9, 2018 17:05
Show Gist options
  • Save fabiomsr/6a0274ef96d00b4a73e83602fa95b645 to your computer and use it in GitHub Desktop.
Save fabiomsr/6a0274ef96d00b4a73e83602fa95b645 to your computer and use it in GitHub Desktop.
Flutter Hello World 3
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: Center(
child: Padding(
padding: const EdgeInsets.only(left: 128.0),
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