Advertisement
joaopaulofcc

Untitled

Sep 2nd, 2020
1,128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.39 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. void main() => runApp(new TodoApp());
  4.  
  5. class TodoApp extends StatelessWidget
  6. {
  7.   @override
  8.   Widget build(BuildContext context)
  9.   {
  10.     return new MaterialApp
  11.     (
  12.       title: 'Todo List',
  13.       home: new Scaffold
  14.       (
  15.         appBar: new AppBar
  16.         (
  17.           title: new Text('Todo List')
  18.         )
  19.       ),
  20.     );
  21.   }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement