All the code you need to run Hello World in Flutter using a Stateless widget

PHOTO EMBED

Sun Dec 29 2019 19:42:22 GMT+0000 (Coordinated Universal Time)

Saved by @charter_carter #android #dart #flutter #ios #helloworld

import 'package:flutter/material.dart';

void main() {
  runApp(
    new MaterialApp(
      title: 'Hello World App',
      home: new myApp(),
    )
  );
}

class myApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        title: new Text('Hello World App'),
      ),
      body: new Center(
        child: new Text(
          'Hello, world!'
        ),
      ),
    );
  }
}
content_copyCOPY

https://kodestat.gitbook.io/flutter/flutter-hello-world