update on settings and customer background

This commit is contained in:
Patrick Alvin Alcala 2025-03-26 14:41:48 +08:00
parent 05c3208cad
commit 6424e82d54
18 changed files with 227 additions and 42 deletions

View file

@ -11,18 +11,31 @@ class IndicatorWidget extends StatelessWidget {
return Row(
mainAxisAlignment: MainAxisAlignment.start,
children: [
// Container(
// height: 24,
// padding: EdgeInsets.symmetric(horizontal: 16),
// decoration: BoxDecoration(
// border: Border.all(color: color ?? const Color.fromRGBO(249, 249, 249, 1), width: 1),
// borderRadius: BorderRadius.circular(20),
// color: color ?? const Color.fromRGBO(249, 249, 249, 1)),
// alignment: Alignment.center, // Center the text within the container
// child: TextWidget(
// text: text,
// size: 12,
// color: const Color.fromRGBO(0, 0, 0, 1),
// ),
// ),
Container(
height: 24,
padding: EdgeInsets.symmetric(horizontal: 16),
padding: EdgeInsets.symmetric(horizontal: 16, vertical: 4),
decoration: BoxDecoration(
border: Border.all(color: color ?? const Color.fromRGBO(249, 249, 249, 1), width: 1),
// border: Border.all(color: color ?? const Color.fromRGBO(7, 5, 7, 0.783), width: 1),
borderRadius: BorderRadius.circular(20),
color: color ?? const Color.fromRGBO(249, 249, 249, 1)),
color: color ?? const Color.fromRGBO(28, 10, 28, 0.894)),
alignment: Alignment.center, // Center the text within the container
child: TextWidget(
text: text,
size: 12,
color: const Color.fromRGBO(0, 0, 0, 1),
color: const Color.fromARGB(255, 255, 255, 255),
),
),
],