Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
medapp_eksad
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qorri_di
medapp_eksad
Commits
8d8862f8
Commit
8d8862f8
authored
Sep 22, 2022
by
Budi Prasetyo
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://103.44.149.204/qorridi/medapp_eksad
parents
3fbe7e3e
c728ce40
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
15 deletions
+21
-15
contact_us2.dart
lib/screen/contact_us/contact_us2.dart
+16
-12
footer.dart
lib/screen/footer.dart
+5
-3
No files found.
lib/screen/contact_us/contact_us2.dart
View file @
8d8862f8
...
...
@@ -119,6 +119,7 @@ class ContactUs2 extends StatelessWidget {
hintText:
"Enter your Name"
,
fillColor:
Colors
.
white
,
filled:
true
,
errorStyle:
TextStyle
(
color:
Colors
.
white
),
enabledBorder:
OutlineInputBorder
(
borderRadius:
BorderRadius
.
zero
,
borderSide:
BorderSide
(
width:
1
,
color:
Colors
.
white
),
...
...
@@ -130,7 +131,7 @@ class ContactUs2 extends StatelessWidget {
),
validator:
(
value
)
{
if
(
value
==
null
||
value
.
isEmpty
)
{
return
'
Name cannot be empty!!!
'
;
return
'
Please enter your name
'
;
}
return
null
;
},
...
...
@@ -170,6 +171,7 @@ class ContactUs2 extends StatelessWidget {
hintText:
"Enter a valid phone number"
,
fillColor:
Colors
.
white
,
filled:
true
,
errorStyle:
TextStyle
(
color:
Colors
.
white
),
enabledBorder:
OutlineInputBorder
(
borderRadius:
BorderRadius
.
zero
,
borderSide:
...
...
@@ -182,11 +184,11 @@ class ContactUs2 extends StatelessWidget {
),
),
validator:
(
value
)
{
if
(
value
==
null
||
value
.
isEmpty
)
{
return
'Phone cannot be empty!!!
'
;
}
return
null
;
},
if
(
value
==
null
||
value
.
isEmpty
)
{
return
'Please enter your phone number
'
;
}
return
null
;
},
),
),
const
SizedBox
(
...
...
@@ -200,6 +202,7 @@ class ContactUs2 extends StatelessWidget {
hintText:
"Enter a valid email address"
,
fillColor:
Colors
.
white
,
filled:
true
,
errorStyle:
TextStyle
(
color:
Colors
.
white
),
enabledBorder:
OutlineInputBorder
(
borderRadius:
BorderRadius
.
zero
,
borderSide:
...
...
@@ -212,11 +215,11 @@ class ContactUs2 extends StatelessWidget {
),
),
validator:
(
value
)
{
if
(
value
==
null
||
value
.
isEmpty
)
{
return
'Email cannot be empty!!!
'
;
}
return
null
;
},
if
(
value
==
null
||
value
.
isEmpty
)
{
return
'Please enter your email
'
;
}
return
null
;
},
),
),
const
SizedBox
(
...
...
@@ -243,6 +246,7 @@ class ContactUs2 extends StatelessWidget {
hintText:
"Enter your message"
,
fillColor:
Colors
.
white
,
filled:
true
,
errorStyle:
TextStyle
(
color:
Colors
.
white
),
enabledBorder:
OutlineInputBorder
(
borderRadius:
BorderRadius
.
zero
,
borderSide:
BorderSide
(
width:
1
,
color:
Colors
.
white
),
...
...
@@ -255,7 +259,7 @@ class ContactUs2 extends StatelessWidget {
maxLines:
5
,
validator:
(
value
)
{
if
(
value
==
null
||
value
.
isEmpty
)
{
return
'
Message cannot be empty!!!
'
;
return
'
Please enter your message
'
;
}
return
null
;
},
...
...
lib/screen/footer.dart
View file @
8d8862f8
...
...
@@ -38,7 +38,7 @@ class Footer extends StatelessWidget {
children:
[
Container
(
width:
screenSize
.
width
*
0.12
,
height:
screenSize
.
height
*
0.0
8
,
height:
screenSize
.
height
*
0.0
7
,
decoration:
const
BoxDecoration
(
//color: Colors.lightBlueAccent,
image:
DecorationImage
(
...
...
@@ -212,10 +212,12 @@ class Footer extends StatelessWidget {
letterSpacing:
1.5
),
),
),
SizedBox
(
height:
10
,),
SizedBox
(
height:
10
,
),
Container
(
height:
screenSize
.
height
*
0.04
,
child:
itemBawah
(
child:
itemBawah
(
item:
'Catalog'
,
routeName:
'/solutions'
,
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment