Updated README
31
README.md
|
@ -2,8 +2,33 @@
|
||||||
|
|
||||||
Dies ist eine Flutter-Anwendung, die es Benutzern ermöglicht, den Zinseszinseffekt auf ihre Investitionen zu berechnen.
|
Dies ist eine Flutter-Anwendung, die es Benutzern ermöglicht, den Zinseszinseffekt auf ihre Investitionen zu berechnen.
|
||||||
|
|
||||||
|

|
||||||
|
*Screenshot der Hauptansicht der Zinseszinsrechner-App auf Deutsch.*
|
||||||
|
|
||||||
|

|
||||||
|
*Screenshot der Hauptansicht der Zinseszinsrechner-App auf Englisch.*
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Berechnung des Endkapitals auf Basis von Anfangskapital, monatlicher Sparrate, Zinssatz und Anlagezeitraum.
|
- Berechnung des Endkapitals auf Basis von Anfangskapital, monatlicher Sparrate, Zinssatz, Anlagezeitraum und Ausschüttungsintervall (jährlich oder monatlich).
|
||||||
- Auswahl des Ausschüttungsintervalls (jährlich oder monatlich).
|
|
||||||
- Anzeige von Grafiken und Meilensteinen, um den Fortschritt der Investition visuell darzustellen.
|

|
||||||
|
*Beispiel für die Berechnung des Endkapitals in der App.*
|
||||||
|
|
||||||
|
- Überprüfung der Eingabe auf Korrektheit: Die Anwendung prüft die Benutzereingaben, um sicherzustellen, dass alle erforderlichen Felder korrekt ausgefüllt sind und valide Daten enthalten.
|
||||||
|
|
||||||
|

|
||||||
|
*Überprüfung der Eingabe auf Korrektheit.*
|
||||||
|
|
||||||
|
- Anzeige von Grafiken und Meilensteinen, um den Fortschritt der Investition visuell darzustellen:
|
||||||
|
|
||||||
|

|
||||||
|
*Grafische Darstellung des Investitionsfortschritts.*
|
||||||
|
|
||||||
|

|
||||||
|
*Weitere Grafikoptionen in der Zinseszinsrechner-App.*
|
||||||
|
|
||||||
|
- Anpassung von Sprache und Währung:
|
||||||
|
|
||||||
|

|
||||||
|
*Sprach- und Währungsauswahl zwischen Deutsch/€ und Englisch/$.*
|
Before Width: | Height: | Size: 300 KiB After Width: | Height: | Size: 300 KiB |
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.6 MiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 162 KiB |
After Width: | Height: | Size: 158 KiB |
After Width: | Height: | Size: 1.5 MiB |
After Width: | Height: | Size: 180 KiB |
After Width: | Height: | Size: 314 KiB |
|
@ -68,7 +68,7 @@ class ResultWidget extends StatelessWidget {
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
backgroundImage: 'assets/images/button_bg1.jpg',
|
backgroundImage: 'assets/Button_Background_1.jpg',
|
||||||
child: Text(
|
child: Text(
|
||||||
localizations.graphic,
|
localizations.graphic,
|
||||||
style: const TextStyle(color: CupertinoColors.white, fontSize: 20),
|
style: const TextStyle(color: CupertinoColors.white, fontSize: 20),
|
||||||
|
@ -88,7 +88,7 @@ class ResultWidget extends StatelessWidget {
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
backgroundImage: 'assets/images/button_bg2.jpg',
|
backgroundImage: 'assets/Button_Background_2.jpg',
|
||||||
child: Text(
|
child: Text(
|
||||||
localizations.milestones,
|
localizations.milestones,
|
||||||
style: const TextStyle(color: CupertinoColors.white, fontSize: 20),
|
style: const TextStyle(color: CupertinoColors.white, fontSize: 20),
|
||||||
|
|
11
pubspec.yaml
|
@ -64,8 +64,15 @@ flutter:
|
||||||
|
|
||||||
# To add assets to your application, add an assets section, like this:
|
# To add assets to your application, add an assets section, like this:
|
||||||
assets:
|
assets:
|
||||||
- assets/images/button_bg1.jpg
|
- assets/Button_Background_1.jpg
|
||||||
- assets/images/button_bg2.jpg
|
- assets/Button_Background_2.jpg
|
||||||
|
- assets/Simulator_Screenshot_1.png
|
||||||
|
- assets/Simulator_Screenshot_2.png
|
||||||
|
- assets/Screenshot_3.png
|
||||||
|
- assets/Simulator_Screenshot_4.png
|
||||||
|
- assets/Simulator_Screenshot_5.png
|
||||||
|
- assets/Simulator_Screenshot_6.png
|
||||||
|
- assets/Screenshot_7.png
|
||||||
|
|
||||||
# An image asset can refer to one or more resolution-specific "variants", see
|
# An image asset can refer to one or more resolution-specific "variants", see
|
||||||
# https://flutter.dev/assets-and-images/#resolution-aware
|
# https://flutter.dev/assets-and-images/#resolution-aware
|
||||||
|
|