Created
November 3, 2020 02:00
-
-
Save antklim/3d6833c686feb16f2de199ccbe0ae4d3 to your computer and use it in GitHub Desktop.
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 characters
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