Skip to content

Instantly share code, notes, and snippets.

@lukaszciastko
Created June 2, 2019 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukaszciastko/b768de46bb01979679201965cf1fd822 to your computer and use it in GitHub Desktop.
Save lukaszciastko/b768de46bb01979679201965cf1fd822 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'package:view_model_tasks/task_list_page.dart';
void main() => runApp(TasksApp());
class TasksApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Tasks',
home: TaskListPage(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment