Custom Live Template in Flutter


Here is the simple program for printing the custom live template in Flutter.


Source Code

import 'package:flutter/material.dart';
void main() {
  runApp(new MaterialApp(
    home: new MyApp(),
  ));
}
class MyApp extends StatefulWidget {
  @override
  _State createState() => new _State();
}
class _State extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        title: new Text("Tutor Joes"),
      ),
      body: new Container(
        padding: new EdgeInsets.all(32.0),
        child: Center(
            child: new Column(
          children: <Widget>[
            new Text("Joes"),
          ],
        )),
      ),
    );
  }
}
To download raw file Click Here