setted goal plans can be saved now

This commit is contained in:
Kima
2023-08-28 02:33:39 +02:00
parent 3e470981a8
commit 0ac0586fba
7 changed files with 467 additions and 364 deletions

View File

@@ -8,7 +8,7 @@ class RoundBorderIcon extends StatelessWidget {
const RoundBorderIcon(
{Key? key,
this.color = Colors.black,
this.width = 16.0,
this.width = 1.5,
required this.icon})
: super(key: key);
@@ -20,7 +20,7 @@ class RoundBorderIcon extends StatelessWidget {
borderRadius: BorderRadius.circular(50.0),
),
child: Padding(
padding: EdgeInsets.zero,
padding: const EdgeInsets.all(5.0),
child: icon,
),
);