Flutter 기본교육 - 부트캠프 - 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(
        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,
          ),
        ),
      ),
    );
  }
}

반응형