Commit f86f49d4 authored by Budi Prasetyo's avatar Budi Prasetyo

centerin field

parent 6df6c79f
...@@ -46,7 +46,8 @@ class _ContactUs2_smallState extends State<ContactUs2_small> { ...@@ -46,7 +46,8 @@ class _ContactUs2_smallState extends State<ContactUs2_small> {
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.spaceEvenly, mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [ children: [
Text( Center(
child: Text(
'Yes, you need ' 'Yes, you need '
'\n' '\n'
'an outsourcing partner ' 'an outsourcing partner '
...@@ -56,7 +57,9 @@ class _ContactUs2_smallState extends State<ContactUs2_small> { ...@@ -56,7 +57,9 @@ class _ContactUs2_smallState extends State<ContactUs2_small> {
color: Colors.white, color: Colors.white,
fontSize: 30, fontSize: 30,
fontWeight: FontWeight.bold)), fontWeight: FontWeight.bold)),
Text( ),
Center(
child: Text(
'Go for the one who knows what they are doing, those who you share values with, ' 'Go for the one who knows what they are doing, those who you share values with, '
'and those who will celebrate your success, and help you win over your biggest challenges. ' 'and those who will celebrate your success, and help you win over your biggest challenges. '
'Looking for an outsourcing partner? ', 'Looking for an outsourcing partner? ',
...@@ -66,10 +69,14 @@ class _ContactUs2_smallState extends State<ContactUs2_small> { ...@@ -66,10 +69,14 @@ class _ContactUs2_smallState extends State<ContactUs2_small> {
fontSize: 18, fontSize: 18,
// fontWeight: FontWeight.bold, // fontWeight: FontWeight.bold,
letterSpacing: 1.1)), letterSpacing: 1.1)),
Text("We’ll contact you immediately to discuss to help you.", ),
Center(
child: Text("We’ll contact you immediately to discuss to help you.",
style: GoogleFonts.poppins( style: GoogleFonts.poppins(
color: Colors.white, fontSize: 18, letterSpacing: 1.2)), color: Colors.white, fontSize: 18, letterSpacing: 1.2)),
Form( ),
Center(
child: Form(
key: _formKey, key: _formKey,
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
...@@ -255,6 +262,7 @@ class _ContactUs2_smallState extends State<ContactUs2_small> { ...@@ -255,6 +262,7 @@ class _ContactUs2_smallState extends State<ContactUs2_small> {
), ),
]), ]),
), ),
),
]), ]),
), ),
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment