Skip to content

Instantly share code, notes, and snippets.

@hongsw
Last active October 17, 2022 05:20
Show Gist options
  • Save hongsw/b5d46afb0be00e1fa9d35c9ec4cd2ad4 to your computer and use it in GitHub Desktop.
Save hongsw/b5d46afb0be00e1fa9d35c9ec4cd2ad4 to your computer and use it in GitHub Desktop.
나의 첫번째 플러터앱

나의 첫번째 플러터앱

Created with <3 with dartpad.dev.

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