22902902
2/17/2020 - 7:22 AM

Hello World | Flutter

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 Flutter')
        ),
        body: Center(
          child: Text('hello world'),
        ),
      ),
    );
  }
}