Fixed some issues home ui

This commit is contained in:
Juan Gilsanz Polo 2023-05-21 02:03:33 +02:00
parent 4a20272772
commit 9d59a5caac
3 changed files with 80 additions and 76 deletions

View file

@ -149,7 +149,7 @@ class CombinedHomeChart extends StatelessWidget {
);
}
if (width > 900) {
if (width > 700) {
return Column(
children: [
Text(
@ -213,7 +213,12 @@ class CombinedHomeChart extends StatelessWidget {
)
),
],
)
),
Divider(
thickness: 1,
color: Theme.of(context).colorScheme.onSurface.withOpacity(0.2),
),
const SizedBox(height: 16)
],
);
}