import 'package:ernaehrung/android/components/circular/circular_component.dart'; import 'package:ernaehrung/android/components/circular/line_circular_with_text_component.dart'; import 'package:ernaehrung/android/config/statistics.dart'; 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 Widget build(BuildContext context) { return ValueListenableBuilder>( valueListenable: StatisticsService.instance.ingredients, builder: (context, value, child) { return Container( height: heightStatisticsContainer, padding: const EdgeInsets.symmetric(vertical: 16, horizontal: 0), child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Expanded( child: SizedBox( child: Padding( padding: const EdgeInsets.symmetric( vertical: 0, horizontal: 8), child: FittedBox( child: CircularLoadingComponent(value[6].toInt()), ), ), ), ), Expanded( child: Column( mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: [ // TODO adjust 200 to values from user box LineCircularWiTextComponent(Colors.lightGreen, value[0], value[3].toInt(), "Fat (g)"), LineCircularWiTextComponent(Colors.lightGreen, value[1], value[4].toInt(), "Protein (g)"), LineCircularWiTextComponent(Colors.lightGreen, value[2], value[5].toInt(), "Carbohydrate (g)"), ], )) ], ), ); }); } }