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
be216ec9
Commit
be216ec9
authored
Aug 30, 2022
by
r.manan@eksad.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contact_us
parent
89fcadb5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
54 additions
and
1 deletion
+54
-1
contactus1.jpg
assets/images/contactus1.jpg
+0
-0
contact_us.dart
lib/screen/contact_us/contact_us.dart
+3
-1
contact_us1.dart
lib/screen/contact_us/contact_us1.dart
+51
-0
No files found.
assets/images/contactus1.jpg
0 → 100644
View file @
be216ec9
120 KB
lib/screen/contact_us/contact_us.dart
View file @
be216ec9
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:medapp_eksad/appbar/appbar_home.dart'
;
import
'package:medapp_eksad/appbar/appbar_home.dart'
;
import
'package:medapp_eksad/screen/contact_us/contact_us1.dart'
;
import
'package:medapp_eksad/screen/footer.dart'
;
import
'package:medapp_eksad/screen/footer.dart'
;
import
'package:medapp_eksad/widget/responsive.dart'
;
import
'package:medapp_eksad/widget/responsive.dart'
;
import
'package:flutter/services.dart'
;
import
'package:flutter/services.dart'
;
...
@@ -32,7 +33,8 @@ class _ContactUsState extends State<ContactUs> {
...
@@ -32,7 +33,8 @@ class _ContactUsState extends State<ContactUs> {
Colors
.
black
,
Colors
.
black
,
Colors
.
blue
),
Colors
.
black
,
Colors
.
black
,
Colors
.
blue
),
body:
ListView
(
body:
ListView
(
children:
[
children:
[
Footer
()
ContactUs1
(),
Footer
(),
],
],
),
),
);
);
...
...
lib/screen/contact_us/contact_us1.dart
View file @
be216ec9
import
'package:flutter/material.dart'
;
import
'package:google_fonts/google_fonts.dart'
;
class
ContactUs1
extends
StatefulWidget
{
const
ContactUs1
({
Key
?
key
})
:
super
(
key:
key
);
@override
State
<
ContactUs1
>
createState
()
=>
_ContactUsState
();
}
class
_ContactUsState
extends
State
<
ContactUs1
>
{
@override
Widget
build
(
BuildContext
context
)
{
var
screenSize
=
MediaQuery
.
of
(
context
).
size
;
return
Stack
(
children:
[
Container
(
width:
screenSize
.
width
,
height:
screenSize
.
height
*
0.42
,
decoration:
const
BoxDecoration
(
image:
DecorationImage
(
image:
AssetImage
(
"assets/images/contactus1.jpg"
,
),
alignment:
Alignment
.
center
,
fit:
BoxFit
.
cover
)),
),
Container
(
width:
screenSize
.
width
*
0.5
,
height:
screenSize
.
height
*
0.34
,
padding:
EdgeInsets
.
only
(
right:
screenSize
.
width
*
0.30
,
left:
screenSize
.
height
*
0.06
),
child:
Column
(
crossAxisAlignment:
CrossAxisAlignment
.
start
,
mainAxisAlignment:
MainAxisAlignment
.
spaceEvenly
,
children:
[
Text
(
'Contact Us'
,
style:
GoogleFonts
.
poppins
(
fontSize:
37
,
fontWeight:
FontWeight
.
bold
,
color:
Colors
.
white
),
overflow:
TextOverflow
.
ellipsis
,
),
],
),
),
],
);
}
}
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