2023-05-29 12:08:46 +02:00
|
|
|
import 'package:ernaehrung/android/components/circular/circular_component.dart';
|
|
|
|
import 'package:ernaehrung/android/components/circular/line_circular_with_text_component.dart';
|
2023-05-30 16:17:51 +02:00
|
|
|
import 'package:ernaehrung/android/config/statistics.dart';
|
2023-05-29 12:08:46 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class StatisticsPercentage extends StatelessWidget {
|
|
|
|
final double heightStatisticsContainer = 220.0;
|
|
|
|
final double widthStatisticsContainer = double.infinity;
|
|
|
|
|
|
|
|
const StatisticsPercentage({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
2023-06-01 11:46:53 +02:00
|
|
|
Widget build(BuildContext context) {
|
2023-05-29 12:08:46 +02:00
|
|
|
return Container(
|
|
|
|
decoration:
|
|
|
|
BoxDecoration(border: Border.all(width: 2.0, color: Colors.black)),
|
|
|
|
height: heightStatisticsContainer,
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 16, horizontal: 0),
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: [
|
2023-06-01 11:46:53 +02:00
|
|
|
Expanded(
|
2023-05-29 12:08:46 +02:00
|
|
|
child: SizedBox(
|
|
|
|
child: Padding(
|
2023-06-01 11:46:53 +02:00
|
|
|
padding: const EdgeInsets.symmetric(vertical: 0, horizontal: 8),
|
2023-05-29 12:08:46 +02:00
|
|
|
child: FittedBox(
|
2023-05-30 21:03:46 +02:00
|
|
|
child: CircularLoadingComponent(),
|
2023-05-29 12:08:46 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Expanded(
|
2023-05-30 21:03:46 +02:00
|
|
|
child: ValueListenableBuilder<List<double>>(
|
|
|
|
valueListenable: StatisticsService.instance.ingredients,
|
|
|
|
builder: (context, value, child) {
|
2023-06-01 11:46:53 +02:00
|
|
|
print("value ${value}");
|
2023-05-30 21:03:46 +02:00
|
|
|
return Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
|
|
|
children: [
|
|
|
|
// TODO adjust 200 to values from user box
|
|
|
|
LineCircularWiTextComponent(
|
|
|
|
Colors.lightGreen, value[0], 200, "Fat (g)"),
|
|
|
|
LineCircularWiTextComponent(
|
|
|
|
Colors.lightGreen, value[1], 200, "Protein (g)"),
|
|
|
|
LineCircularWiTextComponent(
|
|
|
|
Colors.lightGreen, value[2], 200, "Carbohydrate (g)"),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
},
|
2023-05-29 12:08:46 +02:00
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|