Skip to content

Instantly share code, notes, and snippets.

@maffan91
Created January 11, 2020 19:08
Show Gist options
  • Save maffan91/b7aa714c8bea7fb0885091bbae8517b3 to your computer and use it in GitHub Desktop.
Save maffan91/b7aa714c8bea7fb0885091bbae8517b3 to your computer and use it in GitHub Desktop.
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(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment