Flutter First Program | Hello World Program in Flutter
Hi ,In this
Flutter tutorial we are going to learn how make first Flutter project
import
'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget
{
@override
Widget build(BuildContext
context) {
return MaterialApp(
title:
'Welcome to Flutter',
home:
Scaffold(
appBar:
AppBar(
title: Text('Welcome to Flutter'),
),
body:
Center(
child: Text('Hello World'),
),
),
);
}
}
Comments