카테고리 없음
Flutter 시작하기!! (Helloworld 출력)
구운오니
2022. 8. 1. 00:27
728x90
import 'package:flutter/material.dart';
void main() => runApp(
MaterialApp(
title: 'MyApp',
home: MyApp(),
),
);
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Welcome to Flutter'),
),
body: Center(
child: Text('Hello World'),
),
);
}
}
728x90