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.
|
||||
|
||||
![Hauptansicht der App auf Deutsch](assets/Simulator_Screenshot_1.png)
|
||||
*Screenshot der Hauptansicht der Zinseszinsrechner-App auf Deutsch.*
|
||||
|
||||
![Hauptansicht der App auf Englisch](assets/Simulator_Screenshot_2.png)
|
||||
*Screenshot der Hauptansicht der Zinseszinsrechner-App auf Englisch.*
|
||||
|
||||
## Features
|
||||
|
||||
- Berechnung des Endkapitals auf Basis von Anfangskapital, monatlicher Sparrate, Zinssatz und Anlagezeitraum.
|
||||
- Auswahl des Ausschüttungsintervalls (jährlich oder monatlich).
|
||||
- Anzeige von Grafiken und Meilensteinen, um den Fortschritt der Investition visuell darzustellen.
|
||||
- Berechnung des Endkapitals auf Basis von Anfangskapital, monatlicher Sparrate, Zinssatz, Anlagezeitraum und Ausschüttungsintervall (jährlich oder monatlich).
|
||||
|
||||
![Berechnung](assets/Simulator_Screenshot_4.png)
|
||||
*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](assets/Screenshot_3.png)
|
||||
*Überprüfung der Eingabe auf Korrektheit.*
|
||||
|
||||
- Anzeige von Grafiken und Meilensteinen, um den Fortschritt der Investition visuell darzustellen:
|
||||
|
||||
![Grafiken und Meilensteine](assets/Simulator_Screenshot_5.png)
|
||||
*Grafische Darstellung des Investitionsfortschritts.*
|
||||
|
||||
![Grafiken und Meilensteine](assets/Simulator_Screenshot_6.png)
|
||||
*Weitere Grafikoptionen in der Zinseszinsrechner-App.*
|
||||
|
||||
- Anpassung von Sprache und Währung:
|
||||
|
||||
![Sprach- und Währungsauswahl](assets/Screenshot_7.png)
|
||||
*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(
|
||||
localizations.graphic,
|
||||
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(
|
||||
localizations.milestones,
|
||||
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:
|
||||
assets:
|
||||
- assets/images/button_bg1.jpg
|
||||
- assets/images/button_bg2.jpg
|
||||
- assets/Button_Background_1.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
|
||||
# https://flutter.dev/assets-and-images/#resolution-aware
|
||||
|
|