flutter में Hello world App कैसे बनायें ?




How To Create Simple Hello World Project in Flutter ?



Hello World 


Today We are learn How to code for Simple Hello World Project in Flutter. So lets Starts code without Spending Time.


  1. import 'package:flutter/material.dart';  
  2.   
  3. void main() => runApp(MyApp());  
  4.   
  5. class MyApp extends StatelessWidget {  
  6.   // This widget is the root of your application.  
  7.   @override  
  8.   Widget build(BuildContext context) {  
  9.     return MaterialApp(  
  10.       title: 'Hello World Flutter Application',  
  11.       theme: ThemeData(  
  12.         // This is the theme of your application.  
  13.         primarySwatch: Colors.blue,  
  14.       ),  
  15.       home: MyHomePage(title: 'Home page'),  
  16.     );  
  17.   }  
  18. }  
  19. class MyHomePage extends StatelessWidget {  
  20.   MyHomePage({Key key, this.title}) : super(key: key);  
  21.   // This widget is the home page of your application.  
  22.   final String title;  
  23.   
  24.   @override  
  25.   Widget build(BuildContext context) {  
  26.     return Scaffold(  
  27.       appBar: AppBar(  
  28.         title: Text(this.title),  
  29.       ),  
  30.       body: Center(  
  31.         child: Text('Hello World'),  
  32.       ),  
  33.     );  
  34.   }  
  35. }  

Comments

Popular posts from this blog

Primary/Main features of Java

HTTrack ऑफलाइन वेबसाइट डाउनलोडर क्या है ?

Which language is used for Java?