Skip to content

Instantly share code, notes, and snippets.

@wilburx9
Created April 2, 2018 10:32
Show Gist options
  • Save wilburx9/a30340669a25af17187763a9e4f7c3d8 to your computer and use it in GitHub Desktop.
Save wilburx9/a30340669a25af17187763a9e4f7c3d8 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
// This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect
// how it looks.
// This class is the configuration for the state. It holds the values (in this
// case the title) provided by the parent (in this case the App widget) and
// used by the build method of the State. Fields in a Widget subclass are
// always marked "final".
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment