Skip to content

Instantly share code, notes, and snippets.

@vladnicula
Created May 29, 2021 07:44
Show Gist options
  • Save vladnicula/5dca37447d40dcacd2491680173e111d to your computer and use it in GitHub Desktop.
Save vladnicula/5dca37447d40dcacd2491680173e111d to your computer and use it in GitHub Desktop.
Hello Flutter 02
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
title: 'Hello From Flutter', // used by the OS task switcher
home: SafeArea(
child: Scaffold(
body: Center(
child: Text(
'Hello, world!',
),
)),
),
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment