MGS-Developers / my-mgs

The MyMGS app's mobile-native client
MIT License
1 stars 0 forks source link

Create safeguarding dashboard #11

Closed palkerecsenyi closed 3 years ago

palkerecsenyi commented 3 years ago

Use the existing lib/screens/safeguarding/dashboard.dart file to design a student-oriented safeguarding dashboard.

It's up to you what you include in your first draft, but here are some ideas:

None of this page actually needs to do anything, although you may want to open the default browser when the user clicks on a link/email address.

Please also make sure to include the button that's already there (preferably with a nicer design, the current one is just a POC). All that needs to stay the same with the button is the contents of the onPressed function:

Navigator.of(context).push(platformPageRoute(
  context: context,
  builder: (_) => SafeguardingReport(),
));