mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2026-03-10 20:31:44 +00:00
size changes
This commit is contained in:
@ -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,
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user