π£Hello Flutter
1. Installing Flutter π»
2. Creating a New Flutter Project π
flutter create hello_fluttercd hello_flutter3. Exploring Your New Flutter Project π΅οΈ
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Hello Flutter'),
),
body: Center(
child: Text('Welcome to Flutter University!'),
),
),
);
}
}4. Running Your Flutter App π

5. Understanding The Code π
6. Making a Small Change βοΈ
Assignments π
Last updated