Created
May 29, 2021 07:44
-
-
Save vladnicula/5dca37447d40dcacd2491680173e111d to your computer and use it in GitHub Desktop.
Hello Flutter 02
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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