I want to make the text widget become Flex End on Flutter.
Here My Code :
return MaterialApp(
title: 'Nature',
home: Scaffold(
appBar: AppBar(
title: Text('John Doe'),
),
body: Center(
child: Text('Copyright © 2020'),
),
),
I want my widget Text on Bottom.