Velog도 처음이고 웹개발도 처음이네요 ㅋㅋㅋ
Flutter가 지방의 병아리 개발자가 풀스택 개발... 개발과정을 전체적으로 체험하기 좋을 거 같아 시작했습니다.
Hello World! Hello Flutter!
https://evergreenulsan.github.io/flutter-udemy-2-1/
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(
home: Scaffold(
body: Container(
decoration: const BoxDecoration(
gradient: LinearGradient(
colors: [
Colors.deepPurple,
Colors.black,
],
begin: Alignment.topLeft,
end: Alignment.bottomRight,
),
),
child: const Center(
child: Text(
style: TextStyle(
fontSize: 28,
color: Colors.white,
),
'Hello World!'),
),
),
),
));
}