changed text field text color to black

This commit is contained in:
hannathkadher
2024-09-05 12:21:43 +04:00
parent 0c3b820be0
commit 5a3520b089

View File

@ -74,6 +74,9 @@ class CreateSpaceDialogState extends State<CreateSpaceDialog> {
onChanged: (value) { onChanged: (value) {
enteredName = value; // Capture entered name enteredName = value; // Capture entered name
}, },
style: TextStyle(
color: ColorsManager.blackColor,
),
decoration: InputDecoration( decoration: InputDecoration(
hintText: 'Please enter the name', hintText: 'Please enter the name',
filled: true, filled: true,