Created
January 11, 2020 19:08
Revisions
-
maffan91 created this gist
Jan 11, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ import 'package:flutter/material.dart'; import 'package:rest_api/user-list.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Rest API Demo', theme: ThemeData( primarySwatch: Colors.blue, ), home: UserList(), ); } }