Commit d3b4e2f5 authored by Fikri's avatar Fikri

consume api get untuk public

parent 92a9251b
......@@ -2,17 +2,22 @@ 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) {
var screenSize = MediaQuery.of(context).size;
return Container(
width: screenSize.width,
height: screenSize.height * 0.8,
height: screenSize.height * 0.78,
color: Colors.white,
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
......@@ -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,
......@@ -251,7 +275,7 @@ class Footer extends StatelessWidget {
)),
Container(
width: screenSize.width * 0.25,
height: screenSize.height * 0.6,
height: screenSize.height * 0.55,
//color: Colors.blue,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
......@@ -411,7 +435,7 @@ class _EmailAPIState extends State<EmailAPI> {
return const CircularProgressIndicator();
}
return Container(
width: screenSize.width * 0.25,
width: screenSize.width * 0.2,
child: ListTile(
leading: const Icon(
Icons.mail,
......@@ -421,7 +445,7 @@ class _EmailAPIState extends State<EmailAPI> {
title: TextButton(
onPressed: () {
email = pgm['email'];
launch('mailto:$email?subject=Info Medapp');
launch('mailto:$email?subject=Info MCS');
},
// child: SettingAPI(),
child: Text(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment