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
c5894157
Commit
c5894157
authored
Sep 22, 2022
by
Jaenudin Surya Darmatin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://103.44.149.204/qorridi/medapp_eksad
parents
348310dc
c708746e
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
551 additions
and
207 deletions
+551
-207
admin_contact.dart
lib/dashboard/admin/admin_contact.dart
+530
-206
admin_userControl.dart
lib/dashboard/admin/admin_userControl.dart
+2
-0
contact_us2.dart
lib/screen/contact_us/contact_us2.dart
+19
-1
No files found.
lib/dashboard/admin/admin_contact.dart
View file @
c5894157
This diff is collapsed.
Click to expand it.
lib/dashboard/admin/admin_userControl.dart
View file @
c5894157
...
@@ -687,12 +687,14 @@ class _UserControlState extends State<UserControl> {
...
@@ -687,12 +687,14 @@ class _UserControlState extends State<UserControl> {
}
}
},
},
))
))
]);
]);
}).
toList
());
}).
toList
());
})
})
],
],
),
),
)
)
],
],
),
),
),
),
...
...
lib/screen/contact_us/contact_us2.dart
View file @
c5894157
...
@@ -128,6 +128,12 @@ class ContactUs2 extends StatelessWidget {
...
@@ -128,6 +128,12 @@ class ContactUs2 extends StatelessWidget {
borderSide:
BorderSide
(
width:
1
,
color:
Colors
.
white
),
borderSide:
BorderSide
(
width:
1
,
color:
Colors
.
white
),
),
),
),
),
validator:
(
value
)
{
if
(
value
==
null
||
value
.
isEmpty
)
{
return
'Name cannot be empty!!!'
;
}
return
null
;
},
),
),
),
),
const
SizedBox
(
const
SizedBox
(
...
@@ -175,6 +181,12 @@ class ContactUs2 extends StatelessWidget {
...
@@ -175,6 +181,12 @@ class ContactUs2 extends StatelessWidget {
BorderSide
(
width:
1
,
color:
Colors
.
white
),
BorderSide
(
width:
1
,
color:
Colors
.
white
),
),
),
),
),
validator:
(
value
)
{
if
(
value
==
null
||
value
.
isEmpty
)
{
return
'Phone cannot be empty!!!'
;
}
return
null
;
},
),
),
),
),
const
SizedBox
(
const
SizedBox
(
...
@@ -199,6 +211,12 @@ class ContactUs2 extends StatelessWidget {
...
@@ -199,6 +211,12 @@ class ContactUs2 extends StatelessWidget {
BorderSide
(
width:
1
,
color:
Colors
.
white
),
BorderSide
(
width:
1
,
color:
Colors
.
white
),
),
),
),
),
validator:
(
value
)
{
if
(
value
==
null
||
value
.
isEmpty
)
{
return
'Email cannot be empty!!!'
;
}
return
null
;
},
),
),
),
),
const
SizedBox
(
const
SizedBox
(
...
@@ -237,7 +255,7 @@ class ContactUs2 extends StatelessWidget {
...
@@ -237,7 +255,7 @@ class ContactUs2 extends StatelessWidget {
maxLines:
5
,
maxLines:
5
,
validator:
(
value
)
{
validator:
(
value
)
{
if
(
value
==
null
||
value
.
isEmpty
)
{
if
(
value
==
null
||
value
.
isEmpty
)
{
return
'
*Required
'
;
return
'
Message cannot be empty!!!
'
;
}
}
return
null
;
return
null
;
},
},
...
...
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