merge-requests/1/merge
haroon amjad 3 years ago
parent 1719c7029e
commit 5c15d07dc8

@ -745,8 +745,6 @@ class GenericResponseModel {
getCEIDFFStructureList = json['GetCEIDFFStructureList']; getCEIDFFStructureList = json['GetCEIDFFStructureList'];
getCEITransactionList = json['GetCEITransactionList']; getCEITransactionList = json['GetCEITransactionList'];
getCcpTransactionsList = json['GetCcpTransactionsList']; getCcpTransactionsList = json['GetCcpTransactionsList'];
getCcpTransactionsListNew = json['GetCcpTransactionsList_New'];
getConcurrentProgramsList = json['GetConcurrentProgramsList'];
if (json['GetContactDetailsList'] != null) { if (json['GetContactDetailsList'] != null) {
getContactDetailsList = <GetContactDetailsList>[]; getContactDetailsList = <GetContactDetailsList>[];
json['GetContactDetailsList'].forEach((v) { json['GetContactDetailsList'].forEach((v) {
@ -1367,8 +1365,6 @@ class GenericResponseModel {
data['GetCEIDFFStructureList'] = this.getCEIDFFStructureList; data['GetCEIDFFStructureList'] = this.getCEIDFFStructureList;
data['GetCEITransactionList'] = this.getCEITransactionList; data['GetCEITransactionList'] = this.getCEITransactionList;
data['GetCcpTransactionsList'] = this.getCcpTransactionsList; data['GetCcpTransactionsList'] = this.getCcpTransactionsList;
data['GetCcpTransactionsList_New'] = this.getCcpTransactionsListNew;
data['GetConcurrentProgramsList'] = this.getConcurrentProgramsList;
if (this.getContactDetailsList != null) { if (this.getContactDetailsList != null) {
data['GetContactDetailsList'] = this.getContactDetailsList!.map((v) => v.toJson()).toList(); data['GetContactDetailsList'] = this.getContactDetailsList!.map((v) => v.toJson()).toList();
} }
@ -1378,7 +1374,6 @@ class GenericResponseModel {
if (this.getContactDffStructureList != null) { if (this.getContactDffStructureList != null) {
data['GetContactDffStructureList'] = this.getContactDffStructureList!.map((v) => v.toJson()).toList(); data['GetContactDffStructureList'] = this.getContactDffStructureList!.map((v) => v.toJson()).toList();
} }
// data['GetCcpTransactionsList_New'] = this.getCcpTransactionsListNew;
data['GetContactColsStructureList'] = this.getContactColsStructureList; data['GetContactColsStructureList'] = this.getContactColsStructureList;
data['GetContactDetailsList'] = this.getContactDetailsList; data['GetContactDetailsList'] = this.getContactDetailsList;
data['GetContactDffStructureList'] = this.getContactDffStructureList; data['GetContactDffStructureList'] = this.getContactDffStructureList;

@ -53,8 +53,6 @@ class _MowadhafhiHomeState extends State<MowadhafhiHome> {
}, },
child: Container( child: Container(
width: double.infinity, width: double.infinity,
// height: 100.0,
padding: const EdgeInsets.only(left: 12, right: 12, top: 10, bottom: 10),
margin: const EdgeInsets.only(left: 12, right: 12, top: 10, bottom: 10), margin: const EdgeInsets.only(left: 12, right: 12, top: 10, bottom: 10),
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.white, color: Colors.white,
@ -67,6 +65,24 @@ class _MowadhafhiHomeState extends State<MowadhafhiHome> {
), ),
], ],
), ),
clipBehavior: Clip.antiAlias,
child: Stack(
clipBehavior: Clip.antiAlias,
children: [
Positioned(
left: -20,
top: -10,
child: Transform.rotate(
angle: 15,
child: Container(
width: 50,
height: 30,
color: Colors.amber,
),
),
),
Container(
padding: const EdgeInsets.only(left: 15, right: 15, top: 20, bottom: 10),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
@ -98,6 +114,9 @@ class _MowadhafhiHomeState extends State<MowadhafhiHome> {
], ],
), ),
), ),
],
),
),
); );
}, },
separatorBuilder: (BuildContext context, int index) => 12.height, separatorBuilder: (BuildContext context, int index) => 12.height,

Loading…
Cancel
Save