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
b0fc2c8b
Commit
b0fc2c8b
authored
Sep 26, 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
9fa277cb
e18fa4d4
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
149 additions
and
72 deletions
+149
-72
userControl_api.dart
lib/api/userControl_api.dart
+12
-0
admin_contact.dart
lib/dashboard/admin/admin_contact.dart
+2
-2
admin_userControl.dart
lib/dashboard/admin/admin_userControl.dart
+43
-2
homepage.dart
lib/homepage.dart
+1
-1
about_us.dart
lib/screen/about_us.dart
+1
-1
footer.dart
lib/screen/footer.dart
+89
-65
home_user.dart
lib/screen_user/home_user.dart
+1
-1
No files found.
lib/api/userControl_api.dart
View file @
b0fc2c8b
...
...
@@ -3,9 +3,21 @@ import 'dart:convert';
import
'package:http/http.dart'
as
http
;
var
qry
=
'https://dmsdev-api.eksad.com/gateway/medapp/v1/qry'
;
var
cmd
=
'https://dmsdev-api.eksad.com/gateway/medapp/v1/cmd'
;
Future
<
List
<
dynamic
>>
getUserControl
()
async
{
var
response
=
await
http
.
get
(
Uri
.
parse
(
'
$qry
/user/get'
));
return
jsonDecode
(
response
.
body
)[
'data'
];
}
Future
<
bool
>
deleteUserControl
(
idUser
)
async
{
final
response
=
await
http
.
post
(
Uri
.
parse
(
'
$cmd
/user/updateUser'
),
body:
jsonEncode
({
"idUser"
:
idUser
}),
headers:
{
'Content-type'
:
'application/json; charset=UTF-8'
});
if
(
response
.
statusCode
==
200
)
{
return
true
;
}
else
{
return
false
;
}
}
lib/dashboard/admin/admin_contact.dart
View file @
b0fc2c8b
...
...
@@ -631,7 +631,7 @@ class _Dashboard4State extends State<Dashboard4> {
(
isSuccess
)
{
if
(
isSuccess
)
{
setState
(()
{});
Scaffold
.
of
(
Scaffold
Messenger
.
of
(
this
.
context
)
.
showSnackBar
(
const
SnackBar
(
...
...
@@ -640,7 +640,7 @@ class _Dashboard4State extends State<Dashboard4> {
),
);
}
else
{
Scaffold
.
of
(
Scaffold
Messenger
.
of
(
this
.
context
)
.
showSnackBar
(
const
SnackBar
(
...
...
lib/dashboard/admin/admin_userControl.dart
View file @
b0fc2c8b
...
...
@@ -657,6 +657,48 @@ class _UserControlState extends State<UserControl> {
});
}
void
deleteUser
(
BuildContext
context
)
{
showDialog
(
context:
context
,
builder:
(
BuildContext
context
)
{
return
AlertDialog
(
title:
const
Text
(
"Warning"
),
content:
Text
(
"Are you sure want to delete data
${pgm['idUser']}
?"
),
actions:
<
Widget
>[
TextButton
(
child:
const
Text
(
"Yes"
),
onPressed:
()
{
Navigator
.
pop
(
context
);
deleteUserControl
(
pgm
[
'idUser'
])
.
then
((
isSuccess
)
{
if
(
isSuccess
)
{
setState
(()
{});
ScaffoldMessenger
.
of
(
this
.
context
)
.
showSnackBar
(
const
SnackBar
(
content:
Text
(
"Delete data success"
)));
}
else
{
ScaffoldMessenger
.
of
(
this
.
context
)
.
showSnackBar
(
const
SnackBar
(
content:
Text
(
"Delete data failed"
)));
}
});
},
),
TextButton
(
onPressed:
()
{
Navigator
.
pop
(
context
);
},
child:
const
Text
(
"No"
))
],
);
});
}
return
DataRow
(
cells:
[
DataCell
(
Text
(
pgm
[
'idUser'
].
toString
())),
DataCell
(
Text
(
pgm
[
'namaRs'
].
toString
())),
...
...
@@ -681,20 +723,19 @@ class _UserControlState extends State<UserControl> {
viewUser
(
context
);
}
else
if
(
value
==
2
)
{
print
(
"you choose Delete..."
);
deleteUser
(
context
);
}
else
if
(
value
==
3
)
{
print
(
"you choose View..."
);
viewUser
(
context
);
}
},
))
]);
}).
toList
());
})
],
),
)
],
),
),
...
...
lib/homepage.dart
View file @
b0fc2c8b
...
...
@@ -63,7 +63,7 @@ class _HomePageState extends State<HomePage> {
const
Home3
(),
const
Home4
(),
ContactUs2
(),
const
Footer
(),
Footer
(),
],
),
);
...
...
lib/screen/about_us.dart
View file @
b0fc2c8b
...
...
@@ -63,7 +63,7 @@ class _AboutUsState extends State<AboutUs> {
const
Home3
(),
const
Home4
(),
ContactUs2
(),
const
Footer
(),
Footer
(),
],
),
);
...
...
lib/screen/footer.dart
View file @
b0fc2c8b
...
...
@@ -2,10 +2,15 @@ import 'package:flutter/material.dart';
import
'package:font_awesome_flutter/font_awesome_flutter.dart'
;
import
'package:google_fonts/google_fonts.dart'
;
import
'package:medapp_eksad/api/setting_api.dart'
;
import
'package:medapp_eksad/api/sosmed_api.dart'
;
import
'package:url_launcher/url_launcher.dart'
;
class
Footer
extends
StatelessWidget
{
const
Footer
({
Key
?
key
})
:
super
(
key:
key
);
Footer
({
Key
?
key
})
:
super
(
key:
key
);
String
ln
=
''
;
String
tw
=
''
;
String
ig
=
''
;
String
yt
=
''
;
@override
Widget
build
(
BuildContext
context
)
{
...
...
@@ -43,9 +48,10 @@ class Footer extends StatelessWidget {
decoration:
const
BoxDecoration
(
//color: Colors.lightBlueAccent,
image:
DecorationImage
(
image:
AssetImage
(
'assets/logo/medapp-logo.png'
),
fit:
BoxFit
.
fill
)),
image:
AssetImage
(
'assets/logo/medapp-logo.png'
),
fit:
BoxFit
.
fill
),
),
),
const
Spacer
(
flex:
8
,
...
...
@@ -56,9 +62,10 @@ class Footer extends StatelessWidget {
decoration:
const
BoxDecoration
(
//color: Colors.lightBlueAccent,
image:
DecorationImage
(
image:
AssetImage
(
'assets/logo/logo-eksad.png'
),
fit:
BoxFit
.
fill
)),
image:
AssetImage
(
'assets/logo/logo-eksad.png'
),
fit:
BoxFit
.
fill
),
),
),
const
Spacer
(
flex:
8
,
...
...
@@ -86,55 +93,72 @@ class Footer extends StatelessWidget {
width:
screenSize
.
width
*
0.14
,
height:
screenSize
.
height
*
0.03
,
//color: Colors.blue,
child:
Row
(
child:
FutureBuilder
<
List
<
dynamic
>>(
future:
getSosmedDesc
(),
builder:
(
BuildContext
context
,
AsyncSnapshot
snapshot
)
{
var
pgm
=
snapshot
.
data
[
0
];
if
(
snapshot
.
hasError
||
snapshot
.
data
==
null
||
snapshot
.
connectionState
==
ConnectionState
.
waiting
)
{
return
const
CircularProgressIndicator
();
}
return
Row
(
mainAxisAlignment:
MainAxisAlignment
.
spaceEvenly
,
children:
[
IconButton
(
onPressed:
()
{
launch
(
'https://www.linkedin.com/company/pt-tiga-daya-digital-indonesia-triputra-group-eksad-technology'
);
ln
=
pgm
[
'linkedin'
];
launch
(
ln
);
// _launchLinkedIn();
},
icon:
const
Icon
(
FontAwesomeIcons
.
linkedinIn
,
size:
30
,
),
iconSize:
20
,
size:
25
,
),
iconSize:
25
,
color:
Colors
.
black
),
IconButton
(
onPressed:
()
{
launch
(
'https://twitter.com/eksadtechnology/'
);
tw
=
pgm
[
'twitter'
];
launch
(
tw
);
//_launchTwitter();
},
icon:
const
Icon
(
FontAwesomeIcons
.
twitter
,
size:
30
,
size:
25
,
),
iconSize:
20
,
iconSize:
25
,
color:
Colors
.
black
,
),
IconButton
(
onPressed:
()
{
launch
(
'https://www.instagram.com/eksad_technology/'
);
ig
=
pgm
[
'instagram'
];
launch
(
ig
);
// _launchInstagram();
},
icon:
const
Icon
(
FontAwesomeIcons
.
instagram
,
size:
30
,
),
iconSize:
20
,
size:
25
,
),
iconSize:
25
,
color:
Colors
.
black
),
IconButton
(
onPressed:
()
{
launch
(
'https://www.youtube.com/channel/UCiZgIbpWgrAMrHW-TaS9EPw'
);
yt
=
pgm
[
'youtube'
];
launch
(
yt
);
// _launchYoutube();
},
icon:
const
Icon
(
FontAwesomeIcons
.
youtube
,
size:
30
,
size:
25
,
),
iconSize:
20
,
)
iconSize:
25
,
color:
Colors
.
black
)
],
);
},
),
),
const
Spacer
(
flex:
8
,
...
...
lib/screen_user/home_user.dart
View file @
b0fc2c8b
...
...
@@ -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