반응형
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(
appBar: AppBar(
backgroundColor: Colors.green,
title: Center(child: const Text('Kido Flutter is Fun!')),
),
body: Center(
child: Container(
child: Center(child: const Text('Hi ! Kido ☢')),
margin: const EdgeInsets.all(100),
padding: const EdgeInsets.all(10),
color: Colors.red,
height: 300,
width: 300,
),
),
),
);
}
}

반응형
'1인 게임 개발자 나령윤기도[Unity, Flutter]' 카테고리의 다른 글
| Flutter Word Game features/game/presentation/bloc/game_bloc.dart (0) | 2025.10.19 |
|---|---|
| Flutter Word Game main code (0) | 2025.10.19 |
| Unity 인기많은 무료 에셋 검색 및 목록추가 (3) | 2025.08.11 |
| 누구나 Unity 프로그램으로 게임 개발을 할 수 있도록 지원을 아끼지 않겠습니다. (3) | 2025.08.11 |
| 무한의 계단 개발 스토리 (0) | 2025.07.22 |