editable label & color
This commit is contained in:
22
lib/pages/budgets/widgets/budget_projection.dart
Normal file
22
lib/pages/budgets/widgets/budget_projection.dart
Normal file
@@ -0,0 +1,22 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:krezus/domains/budget/budget_bloc.dart';
|
||||
import 'package:krezus/pages/common/titled_container.dart';
|
||||
|
||||
class BudgetProjection extends StatelessWidget {
|
||||
const BudgetProjection({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BlocBuilder<BudgetBloc, BudgetState>(
|
||||
builder: (context, state) => TitledContainer(
|
||||
title: 'Projection',
|
||||
child: Column(
|
||||
children: [
|
||||
|
||||
],
|
||||
)
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user