|
|
|
|
//import 'package:diplomaticquarterapp/pages/BookAppointment/Search.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/config/size_config.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/pages/BookAppointment/Search.dart';
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:giffy_dialog/giffy_dialog.dart';
|
|
|
|
|
|
|
|
|
|
import '../NearestEr.dart';
|
|
|
|
|
|
|
|
|
|
class CardPosition extends StatelessWidget {
|
|
|
|
|
final image;
|
|
|
|
|
final text;
|
|
|
|
|
final subText;
|
|
|
|
|
final type;
|
|
|
|
|
final telephone;
|
|
|
|
|
final networkImage;
|
|
|
|
|
const CardPosition(
|
|
|
|
|
{
|
|
|
|
|
@required this.image,
|
|
|
|
|
@required this.text,
|
|
|
|
|
@required this.subText,
|
|
|
|
|
@required this.type,
|
|
|
|
|
@required this.telephone,
|
|
|
|
|
@required this.networkImage });
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return GestureDetector(
|
|
|
|
|
onTap: () {
|
|
|
|
|
navigateToSearch(context, this.type,this.telephone,this.networkImage);
|
|
|
|
|
print("=============this.type============="+this.type);
|
|
|
|
|
},
|
|
|
|
|
child: Container(
|
|
|
|
|
width:190,
|
|
|
|
|
margin: EdgeInsets.fromLTRB(7.0, 7.0, 7.0, 7.0),
|
|
|
|
|
decoration: BoxDecoration(boxShadow: [
|
|
|
|
|
BoxShadow(color: Colors.grey[400], blurRadius: 2.0, spreadRadius: 0.0)
|
|
|
|
|
], borderRadius: BorderRadius.circular(10), color: Colors.white),
|
|
|
|
|
child: Column(
|
|
|
|
|
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Container(
|
|
|
|
|
margin: EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 0.0),
|
|
|
|
|
child: Text(this.text,
|
|
|
|
|
overflow: TextOverflow.clip,
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Colors.black,
|
|
|
|
|
letterSpacing: 1.0,
|
|
|
|
|
fontSize: 2 * SizeConfig.textMultiplier)),
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
alignment: Alignment.center,
|
|
|
|
|
margin: EdgeInsets.fromLTRB(0.0, 0.0, 10.0, 8.0),
|
|
|
|
|
child: Image.asset(this.image, width: 60.0, height: 60.0),
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
margin: EdgeInsets.fromLTRB(10.0, 0.0, 10.0, 0.0),
|
|
|
|
|
child: Text(this.subText,
|
|
|
|
|
overflow: TextOverflow.clip,
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: Color(0xFFc5272d), letterSpacing: 1.0, fontSize: 15.0)),
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Future navigateToSearch(context, type,telephone,networkImage) async {
|
|
|
|
|
//===Switch case===
|
|
|
|
|
print("================"+type);
|
|
|
|
|
print("================"+telephone);
|
|
|
|
|
print("================"+networkImage);
|
|
|
|
|
|
|
|
|
|
showDialog(
|
|
|
|
|
context: context,builder: (_) => AssetGiffyDialog(image:Image.network(networkImage, fit: BoxFit.cover,),
|
|
|
|
|
title: Text('Men Wearing Jackets',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
fontSize: 22.0, fontWeight: FontWeight.w600),
|
|
|
|
|
),
|
|
|
|
|
description: Text('This is a men wearing jackets dialog box.This library helps you easily create fancy giffy dialog.',
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
style: TextStyle(),
|
|
|
|
|
),
|
|
|
|
|
onOkButtonPressed: () {},
|
|
|
|
|
) );
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|