size changes

This commit is contained in:
mohammad
2025-01-19 16:56:42 +03:00
parent df0f1c6c94
commit bcc4ba98ff

View File

@ -213,10 +213,9 @@ class SignUpView extends StatelessWidget {
text:
'By signing up you agree to our ',
style: const TextStyle(
color: Colors
.white, // White text color
fontSize:
14, // Adjust font size to match the design
color: Colors.white,
fontSize: 14,
fontWeight: FontWeight.w400,
),
children: [
WidgetSpan(
@ -231,14 +230,13 @@ class SignUpView extends StatelessWidget {
child: const Text(
'Terms & Conditions',
style: TextStyle(
color: Colors
.white, // Text color
fontWeight: FontWeight
.bold, // Bold text
fontSize: 16,
color: Colors.white,
fontWeight: FontWeight.w400,
decoration: TextDecoration
.underline, // Underline the text
decorationColor: Colors
.white, // Set the underline color to white
.underline,
decorationColor:
Colors.white,
),
),
),
@ -246,6 +244,8 @@ class SignUpView extends StatelessWidget {
const TextSpan(
text: ' and ',
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: 16,
color: Colors.white),
),
WidgetSpan(
@ -260,22 +260,20 @@ class SignUpView extends StatelessWidget {
child: const Text(
'Privacy Policy',
style: TextStyle(
color: Colors
.white, // Text color
fontWeight: FontWeight
.bold, // Bold text
fontSize: 16,
color: Colors.white,
fontWeight: FontWeight.w400,
decoration: TextDecoration
.underline, // Underline the text
decorationColor: Colors
.white, // Set the underline color to white
.underline,
decorationColor:
Colors.white,
),
),
),
),
],
),
textAlign: TextAlign
.center, // Center align the text
textAlign: TextAlign.center,
),
),
),