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
5e37b544
Commit
5e37b544
authored
Aug 30, 2022
by
r.manan@eksad.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contact_us: smallscreen
parent
bbe60556
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
335 additions
and
2 deletions
+335
-2
small_contact_us1.dart
lib/public_small/small_contact/small_contact_us1.dart
+51
-0
small_contact_us2.dart
lib/public_small/small_contact/small_contact_us2.dart
+280
-0
contact_us.dart
lib/screen/contact_us/contact_us.dart
+4
-2
No files found.
lib/public_small/small_contact/small_contact_us1.dart
View file @
5e37b544
import
'package:flutter/material.dart'
;
import
'package:google_fonts/google_fonts.dart'
;
class
ContactUs1_small
extends
StatefulWidget
{
const
ContactUs1_small
({
Key
?
key
})
:
super
(
key:
key
);
@override
State
<
ContactUs1_small
>
createState
()
=>
_ContactUsState
();
}
class
_ContactUsState
extends
State
<
ContactUs1_small
>
{
@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
,
),
],
),
),
],
);
}
}
lib/public_small/small_contact/small_contact_us2.dart
View file @
5e37b544
This diff is collapsed.
Click to expand it.
lib/screen/contact_us/contact_us.dart
View file @
5e37b544
import
'package:flutter/material.dart'
;
import
'package:medapp_eksad/appbar/appbar_home.dart'
;
import
'package:medapp_eksad/public_small/small_contact/small_contact_us1.dart'
;
import
'package:medapp_eksad/public_small/small_contact/small_contact_us2.dart'
;
import
'package:medapp_eksad/screen/contact_us/contact_us1.dart'
;
import
'package:medapp_eksad/screen/contact_us/contact_us2.dart'
;
import
'package:medapp_eksad/screen/footer.dart'
;
...
...
@@ -36,8 +38,8 @@ class _ContactUsState extends State<ContactUs> {
body:
ResponsiveWidget
.
isSmallScreen
(
context
)
?
ListView
(
children:
[
const
ContactUs1
(),
ContactUs2
(),
const
ContactUs1
_small
(),
ContactUs2
_small
(),
const
Footer
(),
],
)
...
...
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