개발노트/Kotlin55 스파르타 코딩클럽 앱개발 종합반 1주차 import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: Scaffold( //보통의 상중하 3단계로 나눠주는 위젯. //appBar(상)body(중)bottomNavigationBar(하) appBar: AppBar( centerTitle: true, //텍스트를 중앙으로 표시함 title: Tex.. 2023. 6. 22. 이전 1 ··· 7 8 9 10 다음