반응형 dart기본예제1 [Dart] 기본예제 코드 분석 기본기는 코드 이해에 가장 중요한 부분이라고 생각하여 이번에 Dart의 기본 예제 소스코드를 정리하기 위해서 남깁니다. import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( // This is the theme of your app.. 2023. 5. 27. 이전 1 다음 반응형