21 lines
536 B
Dart
21 lines
536 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
/// TODO:
|
|
/// - Expenses (total number, totals by day / month / year)
|
|
/// - Incomes (total number, totals by day / month / year)
|
|
/// - Assets (total number, total by day / month / year)
|
|
/// - Projected Assets in:
|
|
/// - 1 week, 1 month, 1 quarter, 1 year
|
|
/// - 1/2 year? 2 years? 5 years? Allow customization?
|
|
|
|
class ProjectionPage extends StatelessWidget {
|
|
const ProjectionPage({
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Placeholder();
|
|
}
|
|
}
|