Material App In Flutter

import 'package:flutter/material.dart'; void main() => runApp(FirstApp()); class FirstApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp(home: Scaffold( appBar: AppBar( title: Text('Material App in Flutter')), body: Container( child: Text('https://www.fluttertutorial.in/'), ), ),); } }
The flutter tutorial is a website that bring you the latest and amazing resources of code. All the languages codes are included in this website. The languages like flutter, android, java,kotlin etc.with the help of this languages any user can develop the beautiful application
For more information about Flutter. visit www.fluttertutorial.in