Skip to content

Instantly share code, notes, and snippets.

@nawalhmw
Created October 24, 2020 13:35
Show Gist options
  • Save nawalhmw/5aa53648dd0a7a46b54a83e5179ef76c to your computer and use it in GitHub Desktop.
Save nawalhmw/5aa53648dd0a7a46b54a83e5179ef76c to your computer and use it in GitHub Desktop.
//this code belongs to https://fluttercompletereference.com/
//Chapter 17: HTTP Requests
//******************************************************************************
void main() => runApp(DemoApp());
class DemoApp extends StatelessWidget {
final req = const RequestItem(
url: "https://jsonplaceholder.typicode.com/posts/10"
);
const DemoApp();
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text("Request Demo"),
),
body: Center(
child: HTTPWidget(req),
)
)
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment