changed icon color

This commit is contained in:
hannathkadher
2024-10-09 12:23:20 +04:00
parent e35ea8e34a
commit d423552ddf
3 changed files with 4 additions and 4 deletions

View File

@ -80,7 +80,7 @@ class CreateSpaceDialogState extends State<CreateSpaceDialog> {
decoration: InputDecoration( decoration: InputDecoration(
hintText: 'Please enter the name', hintText: 'Please enter the name',
hintStyle: const TextStyle( hintStyle: const TextStyle(
fontSize: 13, // Set your desired font size fontSize: 14, // Set your desired font size
color: ColorsManager.lightGrayColor color: ColorsManager.lightGrayColor
, // Optional: Change the color of the hint text , // Optional: Change the color of the hint text
fontWeight: fontWeight:

View File

@ -38,7 +38,7 @@ class SpaceContainerWidget extends StatelessWidget {
width: 40, width: 40,
height: 60, height: 60,
decoration: const BoxDecoration( decoration: const BoxDecoration(
color: ColorsManager.secondaryColor, color: ColorsManager.spaceColor,
borderRadius: BorderRadius.only( borderRadius: BorderRadius.only(
topLeft: Radius.circular(15), topLeft: Radius.circular(15),
bottomLeft: Radius.circular(15), bottomLeft: Radius.circular(15),
@ -47,6 +47,7 @@ class SpaceContainerWidget extends StatelessWidget {
child: Center( child: Center(
child: SvgPicture.asset( child: SvgPicture.asset(
icon, icon,
color: ColorsManager.whiteColors,
width: 24, width: 24,
height: 24, height: 24,
), ),

View File

@ -12,7 +12,6 @@ abstract class ColorsManager {
static const Color onSecondaryColor = Color(0xFF023DFE); static const Color onSecondaryColor = Color(0xFF023DFE);
static Color shadowBlackColor = Colors.black.withOpacity(0.2); static Color shadowBlackColor = Colors.black.withOpacity(0.2);
static Color dialogBlueTitle = Color(0xFF023DFE).withOpacity(0.6); static Color dialogBlueTitle = Color(0xFF023DFE).withOpacity(0.6);
static const Color primaryTextColor = Colors.black; static const Color primaryTextColor = Colors.black;
@ -50,6 +49,6 @@ abstract class ColorsManager {
static const Color checkBoxFillColor = Color(0xFFF3F3F3); static const Color checkBoxFillColor = Color(0xFFF3F3F3);
static const Color semiTransparentBlackColor = Color(0x3F000000); static const Color semiTransparentBlackColor = Color(0x3F000000);
static const Color transparentColor = Color(0x00000000); static const Color transparentColor = Color(0x00000000);
static const Color spaceColor = Color(0xB2023DFE);
} }
//0036E6 //0036E6