Hello world on Flutter
Hello world is the common word using in programming world. It is used for the beginner to experience the engery of the outcome of code that the person has written. It is one of the crucial part of the most of the developer around the world because it like the a baby seeing the world for the programmers. It is first experience of the programmers entering on the development journey.
Here is the common the Hello word program written in flutter.
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp);
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Center(
child: Text('Hello World'),
),
);
}
}