2023-06-12 20:53:03 +02:00
|
|
|
import 'dart:convert';
|
|
|
|
|
2023-06-14 00:26:04 +02:00
|
|
|
import 'package:awesome_dialog/awesome_dialog.dart';
|
|
|
|
import 'package:flutter_neumorphic/flutter_neumorphic.dart';
|
2023-06-12 20:53:03 +02:00
|
|
|
import 'package:intl/intl.dart';
|
|
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
import 'package:syncfusion_flutter_charts/charts.dart';
|
2023-06-14 00:26:04 +02:00
|
|
|
import 'package:tests/preferences.dart';
|
|
|
|
import 'package:tests/theme/theme_constants.dart';
|
|
|
|
import 'package:tests/theme/theme_manager.dart';
|
2023-06-14 02:46:11 +02:00
|
|
|
import "package:easy_localization/easy_localization.dart";
|
|
|
|
|
|
|
|
Future<void> main() async {
|
|
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
|
|
await EasyLocalization.ensureInitialized();
|
|
|
|
runApp(EasyLocalization(
|
|
|
|
supportedLocales: [Locale('en', 'US'), Locale('de', 'DE')],
|
|
|
|
path: 'lib/assets/translations', // <-- change the path of the translation files
|
|
|
|
fallbackLocale: Locale('en', 'US'),
|
|
|
|
child: const FinancialPlannerApp()
|
|
|
|
),);
|
2023-06-12 20:53:03 +02:00
|
|
|
}
|
2023-06-14 00:26:04 +02:00
|
|
|
ThemeManager _themeManager = ThemeManager();
|
2023-06-12 20:53:03 +02:00
|
|
|
|
|
|
|
class FinancialPlannerApp extends StatelessWidget {
|
2023-06-14 00:26:04 +02:00
|
|
|
const FinancialPlannerApp({super.key});
|
|
|
|
|
2023-06-12 20:53:03 +02:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
2023-06-14 02:46:11 +02:00
|
|
|
localizationsDelegates: context.localizationDelegates,
|
|
|
|
supportedLocales: context.supportedLocales,
|
|
|
|
locale: context.locale,
|
2023-06-14 00:26:04 +02:00
|
|
|
debugShowCheckedModeBanner: false,
|
2023-06-14 02:46:11 +02:00
|
|
|
title: 'title'.tr(),
|
2023-06-14 00:26:04 +02:00
|
|
|
theme: lightTheme,
|
|
|
|
darkTheme: darkTheme,
|
|
|
|
themeMode: _themeManager.themeMode,
|
|
|
|
home: const HomePage(),
|
2023-06-12 20:53:03 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class HomePage extends StatefulWidget {
|
2023-06-14 00:26:04 +02:00
|
|
|
const HomePage({super.key});
|
|
|
|
|
2023-06-12 20:53:03 +02:00
|
|
|
@override
|
2023-06-14 00:26:04 +02:00
|
|
|
HomePageState createState() => HomePageState();
|
2023-06-12 20:53:03 +02:00
|
|
|
}
|
|
|
|
|
2023-06-14 00:26:04 +02:00
|
|
|
class HomePageState extends State<HomePage> {
|
2023-06-12 20:53:03 +02:00
|
|
|
List<Account> accounts = [];
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
2023-06-14 00:26:04 +02:00
|
|
|
_themeManager.addListener(themeListener);
|
2023-06-12 20:53:03 +02:00
|
|
|
loadAccounts();
|
2023-06-14 00:26:04 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
_themeManager.removeListener(themeListener);
|
|
|
|
super.dispose();
|
2023-06-12 20:53:03 +02:00
|
|
|
}
|
2023-06-14 00:26:04 +02:00
|
|
|
themeListener(){
|
|
|
|
if(mounted){
|
|
|
|
setState(() {
|
2023-06-12 20:53:03 +02:00
|
|
|
|
2023-06-14 00:26:04 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2023-06-12 20:53:03 +02:00
|
|
|
Future<void> loadAccounts() async {
|
|
|
|
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
|
|
final accountList = prefs.getStringList('accounts') ?? [];
|
|
|
|
|
|
|
|
setState(() {
|
|
|
|
accounts = accountList.map((accountJson) => Account.fromJson(accountJson)).toList();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> saveAccounts() async {
|
|
|
|
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
|
|
List<String> accountJsonList = accounts.map((account) => json.encode(account.toJson())).toList();
|
|
|
|
await prefs.setStringList('accounts', accountJsonList);
|
|
|
|
}
|
|
|
|
|
|
|
|
void addAccount(Account account) {
|
|
|
|
setState(() {
|
|
|
|
accounts.add(account);
|
|
|
|
saveAccounts();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void deleteAccount(Account account) {
|
|
|
|
setState(() {
|
|
|
|
accounts.remove(account);
|
|
|
|
saveAccounts();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void updateAccountBalance(Account account) {
|
|
|
|
setState(() {
|
|
|
|
saveAccounts();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2023-06-14 00:26:04 +02:00
|
|
|
centerTitle: true,
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
elevation: 0,
|
2023-06-14 02:46:11 +02:00
|
|
|
title: Text(
|
|
|
|
'title'.tr(),
|
|
|
|
style: const TextStyle(
|
2023-06-14 00:26:04 +02:00
|
|
|
fontSize: 18,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
color: Colors.black54,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
actions: [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(right: 16.0, top: 3, bottom: 7),
|
|
|
|
child: NeumorphicButton(
|
2023-06-14 02:46:11 +02:00
|
|
|
onPressed: () async {
|
|
|
|
|
|
|
|
String value = await Navigator.push(
|
2023-06-14 00:26:04 +02:00
|
|
|
context,
|
|
|
|
MaterialPageRoute(builder: (context) => Settings()),
|
|
|
|
);
|
2023-06-14 02:46:11 +02:00
|
|
|
setState(() {
|
|
|
|
|
|
|
|
});
|
2023-06-14 00:26:04 +02:00
|
|
|
},
|
|
|
|
style: NeumorphicStyle(
|
|
|
|
shape: NeumorphicShape.convex,
|
|
|
|
boxShape: NeumorphicBoxShape.circle(),
|
|
|
|
depth: 6,
|
|
|
|
intensity: 0.9,
|
|
|
|
color: Colors.grey.shade100,
|
|
|
|
),
|
|
|
|
child: Icon(Icons.settings, color: Colors.black38),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
2023-06-12 20:53:03 +02:00
|
|
|
),
|
|
|
|
body: ListView.builder(
|
2023-06-14 00:26:04 +02:00
|
|
|
physics: const BouncingScrollPhysics(),
|
2023-06-12 20:53:03 +02:00
|
|
|
itemCount: accounts.length,
|
|
|
|
itemBuilder: (context, index) {
|
2023-06-14 00:26:04 +02:00
|
|
|
return GestureDetector(
|
|
|
|
onLongPress: () {
|
|
|
|
AwesomeDialog(
|
2023-06-14 02:46:11 +02:00
|
|
|
btnOkText: "Delete".tr(),
|
2023-06-14 00:26:04 +02:00
|
|
|
btnOkColor: Colors.lightGreen,
|
|
|
|
btnCancelColor: Colors.grey,
|
|
|
|
context: context,
|
|
|
|
animType: AnimType.bottomSlide,
|
|
|
|
dialogType: DialogType.info,
|
2023-06-14 02:46:11 +02:00
|
|
|
title: 'deleteaccount'.tr(),
|
2023-06-14 00:26:04 +02:00
|
|
|
headerAnimationLoop: false,
|
2023-06-14 02:46:11 +02:00
|
|
|
desc: 'sure'.tr(),
|
2023-06-14 00:26:04 +02:00
|
|
|
btnCancelOnPress: () {},
|
|
|
|
btnOkOnPress: () {
|
|
|
|
deleteAccount(accounts[index]);
|
2023-06-12 20:53:03 +02:00
|
|
|
},
|
2023-06-14 00:26:04 +02:00
|
|
|
).show();
|
|
|
|
|
|
|
|
},
|
|
|
|
child: Neumorphic(
|
|
|
|
margin: const EdgeInsets.all(16),
|
|
|
|
style: NeumorphicStyle(
|
|
|
|
depth: 7,
|
|
|
|
intensity: 1,
|
|
|
|
shadowDarkColor: Colors.grey.shade300,
|
|
|
|
color: Colors.grey.shade100,
|
|
|
|
boxShape: NeumorphicBoxShape.roundRect(BorderRadius.circular(15)),
|
|
|
|
),
|
|
|
|
child: ListTile(
|
|
|
|
title: Text(accounts[index].name),
|
2023-06-14 02:46:11 +02:00
|
|
|
subtitle: Text('${'balance'.tr()}: \$${accounts[index].balance.toStringAsFixed(2)}'),
|
2023-06-14 00:26:04 +02:00
|
|
|
onTap: () {
|
|
|
|
Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (context) => AccountDetailPage(
|
|
|
|
account: accounts[index],
|
|
|
|
updateAccountBalance: updateAccountBalance,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
2023-06-12 20:53:03 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
2023-06-14 00:26:04 +02:00
|
|
|
floatingActionButton: NeumorphicButton(
|
2023-06-12 20:53:03 +02:00
|
|
|
onPressed: () {
|
|
|
|
showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
return AddAccountDialog(
|
|
|
|
addAccount: addAccount,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
2023-06-14 00:26:04 +02:00
|
|
|
style: NeumorphicStyle(
|
|
|
|
depth: 8,
|
|
|
|
intensity: 1,
|
|
|
|
shadowDarkColor: Colors.grey.shade400,
|
|
|
|
color: Colors.grey.shade100,
|
|
|
|
boxShape: const NeumorphicBoxShape.circle(),
|
|
|
|
),
|
|
|
|
child: const Icon(Icons.add,size:60,color: Colors.black12,),
|
2023-06-12 20:53:03 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class Account {
|
|
|
|
String name;
|
|
|
|
double balance;
|
|
|
|
|
|
|
|
Account({
|
|
|
|
required this.name,
|
|
|
|
required this.balance,
|
|
|
|
});
|
|
|
|
|
|
|
|
factory Account.fromJson(String json) {
|
|
|
|
final Map<String, dynamic> map = jsonDecode(json);
|
|
|
|
return Account(
|
|
|
|
name: map['name'],
|
|
|
|
balance: map['balance'],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
return {
|
|
|
|
'name': name,
|
|
|
|
'balance': balance,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class AddAccountDialog extends StatefulWidget {
|
|
|
|
final Function addAccount;
|
|
|
|
|
2023-06-14 00:26:04 +02:00
|
|
|
const AddAccountDialog({super.key, required this.addAccount});
|
2023-06-12 20:53:03 +02:00
|
|
|
|
|
|
|
@override
|
2023-06-14 00:26:04 +02:00
|
|
|
AddAccountDialogState createState() => AddAccountDialogState();
|
2023-06-12 20:53:03 +02:00
|
|
|
}
|
|
|
|
|
2023-06-14 00:26:04 +02:00
|
|
|
class AddAccountDialogState extends State<AddAccountDialog> {
|
2023-06-12 20:53:03 +02:00
|
|
|
final _formKey = GlobalKey<FormState>();
|
|
|
|
final _nameController = TextEditingController();
|
|
|
|
final _balanceController = TextEditingController();
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
_nameController.dispose();
|
|
|
|
_balanceController.dispose();
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
void _submitForm() {
|
|
|
|
if (_formKey.currentState!.validate()) {
|
|
|
|
String name = _nameController.text.trim();
|
|
|
|
double balance = double.parse(_balanceController.text.trim());
|
|
|
|
|
|
|
|
Account account = Account(
|
|
|
|
name: name,
|
|
|
|
balance: balance,
|
|
|
|
);
|
|
|
|
widget.addAccount(account);
|
|
|
|
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return AlertDialog(
|
2023-06-14 00:26:04 +02:00
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.circular(15),
|
|
|
|
),
|
2023-06-14 02:46:11 +02:00
|
|
|
title: Text(
|
|
|
|
'addaccount'.tr(),
|
2023-06-14 00:26:04 +02:00
|
|
|
),
|
|
|
|
titleTextStyle: TextStyle(
|
|
|
|
color: Colors.black54,
|
|
|
|
fontSize: 20,
|
|
|
|
),
|
2023-06-12 20:53:03 +02:00
|
|
|
content: Form(
|
|
|
|
key: _formKey,
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
2023-06-14 00:26:04 +02:00
|
|
|
Neumorphic(
|
|
|
|
style: NeumorphicStyle(
|
|
|
|
depth: -5,
|
|
|
|
intensity: 0.8,
|
|
|
|
color: Colors.grey.shade100,
|
|
|
|
boxShape: NeumorphicBoxShape.roundRect(
|
|
|
|
BorderRadius.circular(12),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
child: TextFormField(
|
|
|
|
controller: _nameController,
|
|
|
|
decoration: InputDecoration(
|
|
|
|
labelText: 'Name',
|
|
|
|
border: InputBorder.none,
|
|
|
|
contentPadding: EdgeInsets.fromLTRB(12, 16, 12, 16),
|
|
|
|
),
|
|
|
|
validator: (value) {
|
|
|
|
if (value!.isEmpty) {
|
2023-06-14 02:46:11 +02:00
|
|
|
return 'entername'.tr();
|
2023-06-14 00:26:04 +02:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
),
|
2023-06-12 20:53:03 +02:00
|
|
|
),
|
2023-06-14 00:26:04 +02:00
|
|
|
SizedBox(height: 16),
|
|
|
|
Neumorphic(
|
|
|
|
style: NeumorphicStyle(
|
|
|
|
depth: -5,
|
|
|
|
intensity: 0.8,
|
|
|
|
color: Colors.grey.shade100,
|
|
|
|
boxShape: NeumorphicBoxShape.roundRect(
|
|
|
|
BorderRadius.circular(12),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
child: TextFormField(
|
|
|
|
controller: _balanceController,
|
|
|
|
decoration: InputDecoration(
|
2023-06-14 02:46:11 +02:00
|
|
|
labelText: 'balance'.tr(),
|
2023-06-14 00:26:04 +02:00
|
|
|
border: InputBorder.none,
|
|
|
|
contentPadding: EdgeInsets.fromLTRB(12, 16, 12, 16),
|
|
|
|
),
|
|
|
|
keyboardType: TextInputType.number,
|
|
|
|
validator: (value) {
|
|
|
|
if (value!.isEmpty) {
|
2023-06-14 02:46:11 +02:00
|
|
|
return 'enterbalance'.tr();
|
2023-06-14 00:26:04 +02:00
|
|
|
}
|
|
|
|
if (double.tryParse(value) == null) {
|
2023-06-14 02:46:11 +02:00
|
|
|
return 'entervalidnumber'.tr();
|
2023-06-14 00:26:04 +02:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
),
|
2023-06-12 20:53:03 +02:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
actions: [
|
2023-06-14 00:26:04 +02:00
|
|
|
NeumorphicButton(
|
2023-06-12 20:53:03 +02:00
|
|
|
onPressed: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
},
|
2023-06-14 00:26:04 +02:00
|
|
|
style: NeumorphicStyle(
|
|
|
|
shape: NeumorphicShape.concave,
|
|
|
|
intensity: 0.9,
|
|
|
|
depth: 9,
|
|
|
|
boxShape: NeumorphicBoxShape.roundRect(
|
|
|
|
BorderRadius.circular(12),
|
|
|
|
),
|
|
|
|
color: Colors.grey.shade100,
|
|
|
|
),
|
|
|
|
padding: EdgeInsets.symmetric(vertical: 12, horizontal: 16),
|
|
|
|
child: Text(
|
2023-06-14 02:46:11 +02:00
|
|
|
'cancel'.tr(),
|
2023-06-14 00:26:04 +02:00
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 12,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
|
|
|
),
|
2023-06-12 20:53:03 +02:00
|
|
|
),
|
2023-06-14 00:26:04 +02:00
|
|
|
NeumorphicButton(
|
2023-06-12 20:53:03 +02:00
|
|
|
onPressed: _submitForm,
|
2023-06-14 00:26:04 +02:00
|
|
|
style: NeumorphicStyle(
|
|
|
|
shape: NeumorphicShape.concave,
|
|
|
|
intensity: 0.8,
|
|
|
|
depth: 9,
|
|
|
|
boxShape: NeumorphicBoxShape.roundRect(
|
|
|
|
BorderRadius.circular(12),
|
|
|
|
),
|
|
|
|
color: Colors.grey.shade100,
|
|
|
|
),
|
|
|
|
padding: EdgeInsets.symmetric(vertical: 12, horizontal: 16),
|
|
|
|
child: Text(
|
2023-06-14 02:46:11 +02:00
|
|
|
'add'.tr(),
|
2023-06-14 00:26:04 +02:00
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 12,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
|
|
|
),
|
2023-06-12 20:53:03 +02:00
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
2023-06-14 00:26:04 +02:00
|
|
|
|
2023-06-12 20:53:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class AccountDetailPage extends StatefulWidget {
|
|
|
|
final Account account;
|
|
|
|
final Function(Account) updateAccountBalance;
|
|
|
|
|
2023-06-14 00:26:04 +02:00
|
|
|
const AccountDetailPage({super.key, required this.account, required this.updateAccountBalance});
|
2023-06-12 20:53:03 +02:00
|
|
|
|
|
|
|
@override
|
2023-06-14 00:26:04 +02:00
|
|
|
AccountDetailPageState createState() => AccountDetailPageState();
|
2023-06-12 20:53:03 +02:00
|
|
|
}
|
|
|
|
|
2023-06-14 00:26:04 +02:00
|
|
|
class AccountDetailPageState extends State<AccountDetailPage> with SingleTickerProviderStateMixin {
|
2023-06-12 20:53:03 +02:00
|
|
|
late TabController _tabController;
|
|
|
|
List<Transaction> transactions = [];
|
|
|
|
List<Transaction> incomeTransactions = [];
|
|
|
|
List<Transaction> expenseTransactions = [];
|
|
|
|
List<ExpenseData> expenseData = [];
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
_tabController = TabController(length: 2, vsync: this);
|
|
|
|
loadTransactions();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
_tabController.dispose();
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
void loadTransactions() async {
|
|
|
|
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
|
|
String? transactionsJson = prefs.getString(widget.account.name);
|
|
|
|
if (transactionsJson != null) {
|
|
|
|
List<dynamic> decodedJson = jsonDecode(transactionsJson);
|
|
|
|
setState(() {
|
|
|
|
transactions = decodedJson.map((json) => Transaction.fromJson(json)).toList();
|
|
|
|
incomeTransactions = transactions.where((transaction) => !transaction.isExpense).toList();
|
|
|
|
expenseTransactions = transactions.where((transaction) => transaction.isExpense).toList();
|
|
|
|
expenseData = calculateMonthlyExpenses();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void saveTransactions() async {
|
|
|
|
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
|
|
List<String> transactionsJsonList = transactions.map((transaction) => json.encode(transaction.toJson())).toList();
|
|
|
|
prefs.setString(widget.account.name, jsonEncode(transactionsJsonList));
|
|
|
|
}
|
|
|
|
|
|
|
|
void addTransaction(Transaction transaction) {
|
|
|
|
setState(() {
|
|
|
|
transactions.add(transaction);
|
|
|
|
if (transaction.isExpense) {
|
|
|
|
widget.account.balance -= transaction.amount;
|
|
|
|
expenseTransactions.add(transaction);
|
|
|
|
} else {
|
|
|
|
widget.account.balance += transaction.amount;
|
|
|
|
incomeTransactions.add(transaction);
|
|
|
|
}
|
|
|
|
saveTransactions();
|
|
|
|
widget.updateAccountBalance(widget.account);
|
|
|
|
expenseData = calculateMonthlyExpenses();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void deleteTransaction(Transaction transaction) {
|
|
|
|
setState(() {
|
|
|
|
transactions.remove(transaction);
|
|
|
|
if (transaction.isExpense) {
|
|
|
|
widget.account.balance += transaction.amount;
|
|
|
|
expenseTransactions.remove(transaction);
|
|
|
|
} else {
|
|
|
|
widget.account.balance -= transaction.amount;
|
|
|
|
incomeTransactions.remove(transaction);
|
|
|
|
}
|
|
|
|
saveTransactions();
|
|
|
|
widget.updateAccountBalance(widget.account);
|
|
|
|
expenseData = calculateMonthlyExpenses();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
List<ExpenseData> calculateMonthlyExpenses() {
|
|
|
|
Map<String, double> monthlyExpenses = {};
|
|
|
|
for (var transaction in expenseTransactions) {
|
|
|
|
String month = DateFormat('yyyy-MM').format(transaction.date);
|
|
|
|
monthlyExpenses[month] = (monthlyExpenses[month] ?? 0) + transaction.amount;
|
|
|
|
}
|
|
|
|
List<ExpenseData> expenseData = [];
|
|
|
|
monthlyExpenses.forEach((month, amount) {
|
|
|
|
expenseData.add(ExpenseData(month: month, amount: amount));
|
|
|
|
});
|
|
|
|
return expenseData;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2023-06-14 00:26:04 +02:00
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
elevation: 0,
|
|
|
|
toolbarHeight: 80,
|
|
|
|
title: Text(
|
|
|
|
widget.account.name,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 18,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
color: Colors.black54,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
centerTitle: true,
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.only(
|
|
|
|
bottomLeft: Radius.circular(15),
|
|
|
|
bottomRight: Radius.circular(15),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
shadowColor: Colors.grey.shade300,
|
|
|
|
leading: Padding(
|
|
|
|
padding: const EdgeInsets.only(left: 16.0),
|
|
|
|
child: NeumorphicButton(
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pop(context);
|
|
|
|
},
|
|
|
|
style: NeumorphicStyle(
|
|
|
|
shape: NeumorphicShape.flat,
|
|
|
|
boxShape: NeumorphicBoxShape.circle(),
|
|
|
|
depth: 6,
|
|
|
|
intensity: 0.9,
|
|
|
|
color: Colors.grey.shade100,
|
|
|
|
),
|
|
|
|
padding: EdgeInsets.all(10),
|
|
|
|
child: Icon(Icons.arrow_back, color: Colors.black38),
|
|
|
|
),
|
|
|
|
),
|
2023-06-12 20:53:03 +02:00
|
|
|
),
|
|
|
|
body: Column(
|
|
|
|
children: [
|
|
|
|
TabBar(
|
|
|
|
controller: _tabController,
|
|
|
|
labelColor: Colors.black,
|
2023-06-14 02:46:11 +02:00
|
|
|
tabs: [
|
|
|
|
Tab(text: 'income'.tr()),
|
|
|
|
Tab(text: 'expenditures'.tr()),
|
2023-06-12 20:53:03 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
child: TabBarView(
|
|
|
|
controller: _tabController,
|
|
|
|
children: [
|
|
|
|
_buildTransactionsList(incomeTransactions),
|
|
|
|
Column(
|
|
|
|
children: [
|
|
|
|
Expanded(child: _buildTransactionsList(expenseTransactions)),
|
|
|
|
if (expenseTransactions.isNotEmpty) _buildExpenseChart(),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2023-06-14 00:26:04 +02:00
|
|
|
floatingActionButton: NeumorphicButton(
|
2023-06-12 20:53:03 +02:00
|
|
|
onPressed: () => showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (_) => AddTransactionDialog(addTransaction: addTransaction),
|
|
|
|
),
|
2023-06-14 00:26:04 +02:00
|
|
|
style: NeumorphicStyle(
|
|
|
|
depth: 8,
|
|
|
|
intensity: 1,
|
|
|
|
shadowDarkColor: Colors.grey.shade400,
|
|
|
|
color: Colors.grey.shade100,
|
|
|
|
boxShape: NeumorphicBoxShape.circle(),
|
|
|
|
),
|
|
|
|
padding: EdgeInsets.all(16),
|
|
|
|
child: Icon(
|
|
|
|
Icons.add,
|
|
|
|
size: 40,
|
|
|
|
color: Colors.black12,
|
|
|
|
),
|
2023-06-12 20:53:03 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _buildTransactionsList(List<Transaction> transactionsList) {
|
|
|
|
return ListView.builder(
|
|
|
|
itemCount: transactionsList.length,
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
return ListTile(
|
|
|
|
title: Text(transactionsList[index].title),
|
|
|
|
subtitle: Text(transactionsList[index].title),
|
|
|
|
trailing: Text(
|
|
|
|
transactionsList[index].isExpense
|
|
|
|
? '-\$${transactionsList[index].amount.toStringAsFixed(2)}'
|
|
|
|
: '+\$${transactionsList[index].amount.toStringAsFixed(2)}',
|
|
|
|
style: TextStyle(
|
|
|
|
color: transactionsList[index].isExpense ? Colors.red : Colors.green,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
onLongPress: () => deleteTransaction(transactionsList[index]),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _buildExpenseChart() {
|
|
|
|
return Padding(
|
2023-06-14 00:26:04 +02:00
|
|
|
padding: const EdgeInsets.all(8.0),
|
2023-06-12 20:53:03 +02:00
|
|
|
child: Card(
|
|
|
|
elevation: 4.0,
|
|
|
|
child: Padding(
|
2023-06-14 00:26:04 +02:00
|
|
|
padding: const EdgeInsets.all(16.0),
|
2023-06-12 20:53:03 +02:00
|
|
|
child: MonthlyExpensesChart(data: expenseData),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class ExpenseData {
|
|
|
|
final String month;
|
|
|
|
final double amount;
|
|
|
|
|
|
|
|
ExpenseData({required this.month, required this.amount});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Transaction {
|
|
|
|
String title;
|
|
|
|
double amount;
|
|
|
|
bool isExpense;
|
|
|
|
DateTime date;
|
|
|
|
|
|
|
|
Transaction({
|
|
|
|
required this.title,
|
|
|
|
required this.amount,
|
|
|
|
required this.isExpense,
|
|
|
|
required this.date,
|
|
|
|
});
|
|
|
|
|
|
|
|
factory Transaction.fromJson(String json) {
|
|
|
|
final Map<String, dynamic> map = jsonDecode(json);
|
|
|
|
return Transaction(
|
|
|
|
title: map['title'],
|
|
|
|
amount: map['amount'],
|
|
|
|
isExpense: map['isExpense'],
|
|
|
|
date: DateTime.parse(map['date']),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
return {
|
|
|
|
'title': title,
|
|
|
|
'amount': amount,
|
|
|
|
'isExpense': isExpense,
|
|
|
|
'date': date.toString(),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class AddTransactionDialog extends StatefulWidget {
|
|
|
|
final Function addTransaction;
|
|
|
|
|
2023-06-14 00:26:04 +02:00
|
|
|
const AddTransactionDialog({super.key, required this.addTransaction});
|
2023-06-12 20:53:03 +02:00
|
|
|
|
|
|
|
@override
|
2023-06-14 00:26:04 +02:00
|
|
|
AddTransactionDialogState createState() => AddTransactionDialogState();
|
2023-06-12 20:53:03 +02:00
|
|
|
}
|
|
|
|
|
2023-06-14 00:26:04 +02:00
|
|
|
class AddTransactionDialogState extends State<AddTransactionDialog> {
|
2023-06-12 20:53:03 +02:00
|
|
|
final _formKey = GlobalKey<FormState>();
|
|
|
|
final _titleController = TextEditingController();
|
|
|
|
final _amountController = TextEditingController();
|
|
|
|
bool _isExpense = true;
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
_titleController.dispose();
|
|
|
|
_amountController.dispose();
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
void _submitForm() {
|
|
|
|
if (_formKey.currentState!.validate()) {
|
|
|
|
String title = _titleController.text.trim();
|
|
|
|
double amount = double.parse(_amountController.text.trim());
|
|
|
|
|
|
|
|
Transaction transaction = Transaction(
|
|
|
|
title: title,
|
|
|
|
amount: amount,
|
|
|
|
isExpense: _isExpense,
|
|
|
|
date: DateTime.now(),
|
|
|
|
);
|
|
|
|
widget.addTransaction(transaction);
|
|
|
|
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return AlertDialog(
|
2023-06-14 00:26:04 +02:00
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.circular(15),
|
|
|
|
),
|
|
|
|
title: Text(
|
2023-06-14 02:46:11 +02:00
|
|
|
'addtrans'.tr(),
|
2023-06-14 00:26:04 +02:00
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 20,
|
|
|
|
color: Colors.black54,
|
|
|
|
),
|
|
|
|
),
|
2023-06-14 02:41:32 +02:00
|
|
|
content: Form(
|
|
|
|
key: _formKey, // Hier wird das _formKey dem Form-Widget zugewiesen
|
|
|
|
child: Column(
|
2023-06-14 00:26:04 +02:00
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
|
|
|
Neumorphic(
|
|
|
|
style: NeumorphicStyle(
|
|
|
|
depth: -5,
|
|
|
|
intensity: 0.8,
|
|
|
|
color: Colors.grey.shade100,
|
|
|
|
boxShape: NeumorphicBoxShape.roundRect(
|
|
|
|
BorderRadius.circular(12),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
child: TextFormField(
|
2023-06-12 20:53:03 +02:00
|
|
|
controller: _titleController,
|
2023-06-14 00:26:04 +02:00
|
|
|
decoration: InputDecoration(
|
|
|
|
labelText: 'Title',
|
|
|
|
border: InputBorder.none,
|
|
|
|
contentPadding: EdgeInsets.symmetric(
|
|
|
|
vertical: 12,
|
|
|
|
horizontal: 16,
|
|
|
|
),
|
|
|
|
),
|
2023-06-12 20:53:03 +02:00
|
|
|
validator: (value) {
|
|
|
|
if (value!.isEmpty) {
|
2023-06-14 02:46:11 +02:00
|
|
|
return 'entertitle'.tr();
|
2023-06-12 20:53:03 +02:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
),
|
2023-06-14 00:26:04 +02:00
|
|
|
),
|
|
|
|
SizedBox(height: 16),
|
|
|
|
Neumorphic(
|
|
|
|
style: NeumorphicStyle(
|
|
|
|
depth: -5,
|
|
|
|
intensity: 0.8,
|
|
|
|
color: Colors.grey.shade100,
|
|
|
|
boxShape: NeumorphicBoxShape.roundRect(
|
|
|
|
BorderRadius.circular(12),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
child: TextFormField(
|
2023-06-12 20:53:03 +02:00
|
|
|
controller: _amountController,
|
2023-06-14 00:26:04 +02:00
|
|
|
decoration: InputDecoration(
|
2023-06-14 02:46:11 +02:00
|
|
|
labelText: 'amount'.tr(),
|
2023-06-14 00:26:04 +02:00
|
|
|
border: InputBorder.none,
|
|
|
|
contentPadding: EdgeInsets.symmetric(
|
|
|
|
vertical: 12,
|
|
|
|
horizontal: 16,
|
|
|
|
),
|
|
|
|
),
|
2023-06-12 20:53:03 +02:00
|
|
|
keyboardType: TextInputType.number,
|
|
|
|
validator: (value) {
|
|
|
|
if (value!.isEmpty) {
|
2023-06-14 02:46:11 +02:00
|
|
|
return 'enteramount'.tr();
|
2023-06-12 20:53:03 +02:00
|
|
|
}
|
|
|
|
if (double.tryParse(value) == null) {
|
2023-06-14 02:46:11 +02:00
|
|
|
return 'entervalidnumber'.tr();
|
2023-06-12 20:53:03 +02:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
),
|
2023-06-14 00:26:04 +02:00
|
|
|
),
|
|
|
|
SizedBox(height: 16),
|
|
|
|
Row(
|
|
|
|
children: [
|
|
|
|
NeumorphicCheckbox(
|
|
|
|
style: NeumorphicCheckboxStyle(selectedColor: Colors.lightGreen, disabledColor: Colors.grey.shade200,selectedDepth: -10, unselectedDepth: 8),
|
|
|
|
value: _isExpense,
|
|
|
|
onChanged: (value) {
|
|
|
|
setState(() {
|
|
|
|
_isExpense = value!;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
),
|
|
|
|
SizedBox(width: 8),
|
2023-06-14 02:46:11 +02:00
|
|
|
Text('expense'.tr(), style: TextStyle(color: Colors.black87),),
|
2023-06-14 00:26:04 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
2023-06-14 02:41:32 +02:00
|
|
|
)),
|
2023-06-12 20:53:03 +02:00
|
|
|
actions: [
|
2023-06-14 00:26:04 +02:00
|
|
|
NeumorphicButton(
|
2023-06-12 20:53:03 +02:00
|
|
|
onPressed: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
},
|
2023-06-14 00:26:04 +02:00
|
|
|
style: NeumorphicStyle(
|
|
|
|
shape: NeumorphicShape.concave,
|
|
|
|
intensity: 0.8,
|
|
|
|
depth: 9,
|
|
|
|
boxShape: NeumorphicBoxShape.roundRect(
|
|
|
|
BorderRadius.circular(12),
|
|
|
|
),
|
|
|
|
color: Colors.grey.shade100,
|
|
|
|
),
|
|
|
|
padding: EdgeInsets.symmetric(vertical: 12, horizontal: 16),
|
|
|
|
child: Text(
|
2023-06-14 02:46:11 +02:00
|
|
|
'cancel'.tr(),
|
2023-06-14 00:26:04 +02:00
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 12,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
|
|
|
),
|
2023-06-12 20:53:03 +02:00
|
|
|
),
|
2023-06-14 00:26:04 +02:00
|
|
|
NeumorphicButton(
|
2023-06-12 20:53:03 +02:00
|
|
|
onPressed: _submitForm,
|
2023-06-14 00:26:04 +02:00
|
|
|
style: NeumorphicStyle(
|
|
|
|
shape: NeumorphicShape.concave,
|
|
|
|
intensity: 0.8,
|
|
|
|
depth: 9,
|
|
|
|
boxShape: NeumorphicBoxShape.roundRect(
|
|
|
|
BorderRadius.circular(12),
|
|
|
|
),
|
|
|
|
color: Colors.grey.shade100,
|
|
|
|
),
|
|
|
|
padding: EdgeInsets.symmetric(vertical: 12, horizontal: 16),
|
|
|
|
child: Text(
|
2023-06-14 02:46:11 +02:00
|
|
|
'add'.tr(),
|
2023-06-14 00:26:04 +02:00
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 12,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
|
|
|
),
|
2023-06-12 20:53:03 +02:00
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
2023-06-14 00:26:04 +02:00
|
|
|
|
2023-06-12 20:53:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class MonthlyExpensesChart extends StatelessWidget {
|
|
|
|
final List<ExpenseData> data;
|
|
|
|
|
2023-06-14 00:26:04 +02:00
|
|
|
const MonthlyExpensesChart({super.key, required this.data});
|
2023-06-12 20:53:03 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2023-06-14 00:26:04 +02:00
|
|
|
return SizedBox(
|
2023-06-12 20:53:03 +02:00
|
|
|
height: 300,
|
|
|
|
child: SfCartesianChart(
|
|
|
|
primaryXAxis: CategoryAxis(),
|
|
|
|
series: <ChartSeries>[
|
|
|
|
ColumnSeries<ExpenseData, String>(
|
|
|
|
dataSource: data,
|
|
|
|
xValueMapper: (ExpenseData expense, _) => expense.month,
|
|
|
|
yValueMapper: (ExpenseData expense, _) => expense.amount,
|
|
|
|
color: Colors.blue,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|