Skip to content

Commit

Permalink
Add grades feature to sales page (#1446)
Browse files Browse the repository at this point in the history
![image](https://github.com/SharezoneApp/sharezone-app/assets/24459435/167f84eb-c91b-483a-b06a-b586dd865114)

It's likely that we will change the text later depending on what is in
the free version and what in the paid version.
  • Loading branch information
nilsreichardt authored Apr 10, 2024
1 parent 01dafc8 commit 63b8914
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ class SharezonePlusAdvantages extends StatelessWidget {
Widget build(BuildContext context) {
return Column(
children: [
const _Grades(),
const _MoreColors(),
if (isHomeworkReminderFeatureVisible) const _HomeworkReminder(),
const _PastEvents(),
Expand All @@ -40,6 +41,20 @@ class SharezonePlusAdvantages extends StatelessWidget {
}
}

class _Grades extends StatelessWidget {
const _Grades();

@override
Widget build(BuildContext context) {
return const _AdvantageTile(
icon: Icon(Icons.emoji_events),
title: Text('Noten'),
description: Text(
'Speichere deine Schulnoten mit Sharezone Plus und behalte den Überblick über deine Leistungen. Schriftliche Prüfungen, mündliche Mitarbeit, Halbjahresnoten - alles an einem Ort.'),
);
}
}

class _MoreColors extends StatelessWidget {
const _MoreColors();

Expand Down

0 comments on commit 63b8914

Please sign in to comment.