28 lines
747 B
Dart
28 lines
747 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
import '../meal_page_text/days_component.dart';
|
||
|
import '../meal_page_text/statistics_today_component.dart';
|
||
|
|
||
|
class RoundChartComponent extends StatelessWidget {
|
||
|
const RoundChartComponent({Key? key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Container(
|
||
|
decoration: const BoxDecoration(
|
||
|
color: Colors.white,
|
||
|
borderRadius: BorderRadius.all(Radius.circular(8))),
|
||
|
child: Padding(
|
||
|
padding: const EdgeInsets.symmetric(
|
||
|
vertical: 8, horizontal: 16),
|
||
|
child: Column(
|
||
|
children: const [
|
||
|
DaysMealPageComponent(),
|
||
|
StatisticsPercentage(),
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|