Created with <3 with dartpad.dev.
Last active
October 17, 2022 05:20
-
-
Save hongsw/b5d46afb0be00e1fa9d35c9ec4cd2ad4 to your computer and use it in GitHub Desktop.
나의 첫번째 플러터앱
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( | |
const MaterialApp( | |
home: Scaffold( | |
body: Text("안녕! 나의 첫번째 플러터 앱") | |
) | |
) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment