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
e18fa4d4
Commit
e18fa4d4
authored
Sep 26, 2022
by
Fikri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mengubah footer.dart
parent
cf9d37ae
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
31 deletions
+28
-31
homepage.dart
lib/homepage.dart
+1
-1
about_us.dart
lib/screen/about_us.dart
+1
-1
footer.dart
lib/screen/footer.dart
+25
-28
home_user.dart
lib/screen_user/home_user.dart
+1
-1
No files found.
lib/homepage.dart
View file @
e18fa4d4
...
...
@@ -63,7 +63,7 @@ class _HomePageState extends State<HomePage> {
const
Home3
(),
const
Home4
(),
ContactUs2
(),
const
Footer
(),
Footer
(),
],
),
);
...
...
lib/screen/about_us.dart
View file @
e18fa4d4
...
...
@@ -63,7 +63,7 @@ class _AboutUsState extends State<AboutUs> {
const
Home3
(),
const
Home4
(),
ContactUs2
(),
const
Footer
(),
Footer
(),
],
),
);
...
...
lib/screen/footer.dart
View file @
e18fa4d4
...
...
@@ -17,7 +17,7 @@ class Footer extends StatelessWidget {
var
screenSize
=
MediaQuery
.
of
(
context
).
size
;
return
Container
(
width:
screenSize
.
width
,
height:
screenSize
.
height
*
0.
7
8
,
height:
screenSize
.
height
*
0.8
,
color:
Colors
.
white
,
child:
Column
(
mainAxisAlignment:
MainAxisAlignment
.
start
,
...
...
@@ -95,18 +95,15 @@ class Footer extends StatelessWidget {
//color: Colors.blue,
child:
FutureBuilder
<
List
<
dynamic
>>(
future:
getSosmedDesc
(),
builder:
(
BuildContext
context
,
AsyncSnapshot
snapshot
)
{
builder:
(
BuildContext
context
,
AsyncSnapshot
snapshot
)
{
var
pgm
=
snapshot
.
data
[
0
];
if
(
snapshot
.
hasError
||
snapshot
.
data
==
null
||
snapshot
.
connectionState
==
ConnectionState
.
waiting
)
{
snapshot
.
connectionState
==
ConnectionState
.
waiting
)
{
return
const
CircularProgressIndicator
();
}
return
Row
(
mainAxisAlignment:
MainAxisAlignment
.
spaceEvenly
,
mainAxisAlignment:
MainAxisAlignment
.
spaceEvenly
,
children:
[
IconButton
(
onPressed:
()
{
...
...
@@ -161,6 +158,7 @@ class Footer extends StatelessWidget {
);
},
),
),
const
Spacer
(
flex:
8
,
...
...
@@ -277,7 +275,7 @@ class Footer extends StatelessWidget {
)),
Container
(
width:
screenSize
.
width
*
0.25
,
height:
screenSize
.
height
*
0.
55
,
height:
screenSize
.
height
*
0.
6
,
//color: Colors.blue,
child:
Column
(
crossAxisAlignment:
CrossAxisAlignment
.
start
,
...
...
@@ -437,7 +435,7 @@ class _EmailAPIState extends State<EmailAPI> {
return
const
CircularProgressIndicator
();
}
return
Container
(
width:
screenSize
.
width
*
0.2
,
width:
screenSize
.
width
*
0.2
5
,
child:
ListTile
(
leading:
const
Icon
(
Icons
.
mail
,
...
...
@@ -447,15 +445,14 @@ class _EmailAPIState extends State<EmailAPI> {
title:
TextButton
(
onPressed:
()
{
email
=
pgm
[
'email'
];
launch
(
'mailto:
$email
?subject=Info MCS
'
);
launch
(
'mailto:
$email
?subject=Info Medapp
'
);
},
// child: SettingAPI(),
child:
Text
(
pgm
[
'email'
],
style:
GoogleFonts
.
poppins
(
fontSize:
16
,
color:
Colors
.
black87
,
letterSpacing:
1.1
),
),
),
)),
),
);
},
...
...
lib/screen_user/home_user.dart
View file @
e18fa4d4
...
...
@@ -63,7 +63,7 @@ class _HomePageUserState extends State<HomePageUser> {
const
Home3
(),
const
Home4
(),
ContactUs2
(),
const
Footer
(),
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