Skip to content

Instantly share code, notes, and snippets.

@nawalhmw
Created October 24, 2020 17:47
Show Gist options
  • Save nawalhmw/206c7e6fc8a90196baaa62c1d5f41fee to your computer and use it in GitHub Desktop.
Save nawalhmw/206c7e6fc8a90196baaa62c1d5f41fee to your computer and use it in GitHub Desktop.
//this code belongs to https://fluttercompletereference.com/
//Chapter 17: Advanced HTTP
//******************************************************************************
void main() => runApp(DemoApp());
class DemoApp extends StatelessWidget {
const DemoApp();
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text("Download Demo"),
),
body: Center(
child: const FetchDataPage(),
)
)
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment