Skip to content

Instantly share code, notes, and snippets.

@antklim
Created November 3, 2020 02:00
Show Gist options
  • Save antklim/3d6833c686feb16f2de199ccbe0ae4d3 to your computer and use it in GitHub Desktop.
Save antklim/3d6833c686feb16f2de199ccbe0ae4d3 to your computer and use it in GitHub Desktop.
class CalculusScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
child: SafeArea(
child: ListView(
padding: const EdgeInsets.symmetric(horizontal: 24.0),
children: <Widget>[
Header(),
Divider(indent: 10.0, endIndent: 10.0, height: 8.0),
MemoryInfo(),
CalculatorInput(),
MemoryManagement(),
],
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment