import 'package:flutter/material.dart'; import 'package:teso/Classes/API Clasess/CouponDetails.dart'; import 'package:provider/provider.dart'; import 'package:teso/Classes/CouponRateCalculator.dart'; import 'package:teso/providers/user_provider.dart'; import 'package:teso/Classes/API Clasess/CouponHead.dart'; import 'package:teso/util/SizeConfig.dart'; import 'dart:math' as math; import 'package:teso/util/consts.dart'; import 'package:page_transition/page_transition.dart'; import 'package:teso/Pages/productView.dart'; import 'package:teso/Classes/API Clasess/ProximityCoupon.dart'; import 'package:teso/Classes/API Clasess/Product.dart'; Positioned buildActiveFreebieCoupon( ProximityCoupon img, double bottom, double right, double left, double cardWidth, double rotation, double skew, BuildContext context, int flag, Function swipeRight, Function swipeLeft, ) { SizeConfig().init(context); return new Positioned( bottom: bottom, right: flag == 0 ? right != 0.0 ? right : null : null, left: flag == 1 ? right != 0.0 ? right : null : null, child: new Transform( alignment: flag == 0 ? Alignment.bottomRight : Alignment.bottomLeft, transform: new Matrix4.skewX(skew), child: new RotationTransition( turns: new AlwaysStoppedAnimation( flag == 0 ? rotation / 360 : -rotation / 360), child: Column( children: [ Container( width: (MediaQuery.of(context).size.width * 0.75), height: MediaQuery.of(context).size.height * 0.65, margin: EdgeInsets.only( left: MediaQuery.of(context).size.width * 0.1, ), decoration: BoxDecoration( borderRadius: BorderRadius.only( bottomLeft: Radius.circular(20), bottomRight: Radius.circular(20), topLeft: Radius.circular(20), topRight: Radius.circular(20), ), color: Colors.white, ), child: InkWell( onTap: () async { CouponsHead head = new CouponsHead(); head.businessId = img.business!.businessId; head.couponId = img.couponId; head.expiration = img.expiration; head.lower = img.lowerLimit; head.upper = img.upperLimit; head.quantity = img.quantity; head.state = img.state; head.targetProduct = img.targetID; head.type = img.type; CouponDetails details = new CouponDetails(); details.businessId = img.business!.businessId; details.countID = "null"; details.couponId = img.couponId; details.expiration = img.expiration; details.issuer = img.business; details.lowerLimit = img.lowerLimit; details.upperLimit = img.upperLimit; details.quantity = img.quantity; details.state = img.state; details.type = img.type; details.targetProduct = new Product(); details.targetProduct!.businessID = details.businessId; details.targetProduct!.productImage = img.targetImage; details.targetProduct!.productName = img.targetName; details.targetProduct!.unitPrice = img.targetCost; details.targetProduct!.productDesc = img.tagretDescription; Provider.of(context, listen: false) .viewCoupon(head); Navigator.push( context, PageTransition( type: PageTransitionType.rightToLeft, child: ProductView( couponDetails: details, ), ), ); }, child: ClipRRect( borderRadius: BorderRadius.only( bottomLeft: Radius.circular(20), bottomRight: Radius.circular(20), topLeft: Radius.circular(20), topRight: Radius.circular(20), ), child: Column( children: [ Container( width: (MediaQuery.of(context).size.width * 0.75), height: MediaQuery.of(context).size.height * 0.50, padding: EdgeInsets.all(8.0), decoration: BoxDecoration( color: Colors.white, image: DecorationImage( fit: BoxFit.fill, image: AssetImage("assets/images/grey.png"), colorFilter: new ColorFilter.mode( tesoAsh.withOpacity(1.0), BlendMode.overlay), ), borderRadius: BorderRadius.only( bottomLeft: Radius.circular(80), bottomRight: Radius.circular(80), ), ), child: Stack( children: [ Align( alignment: Alignment.topLeft, child: Row( children: [ Image( width: 30, image: AssetImage( "assets/images/tesoCouponInsignia.png")), SizedBox( width: 5, ), Text( "TESO", style: TextStyle( color: Colors.black, fontSize: 15, ), ), ], ), ), Align( alignment: Alignment.topCenter, child: Container( margin: EdgeInsets.only( top: MediaQuery.of(context).size.width * 0.125, ), child: Column( children: [ Text( img.business!.businessName!, style: TextStyle( color: Colors.black, fontSize: 18, fontWeight: FontWeight.w700, ), ), Container( width: double.infinity, margin: EdgeInsets.symmetric( vertical: 10, ), child: Center( child: Text( "FREEBIE", textAlign: TextAlign.center, style: TextStyle( color: Colors.black, fontSize: 25, fontWeight: FontWeight.w900, ), ), ), ), ], ), ), ), Align( alignment: Alignment.center, child: Container( height: SizeConfig.safeBlockHorizontal * 16, padding: EdgeInsets.all(4.5), decoration: BoxDecoration( border: Border.all(color: Colors.black, width: 2), ), child: Column( children: [ Text( "ORIGINAL PRICE : GH¢ " + img.targetCost!.toStringAsFixed(2), style: TextStyle( color: Colors.black, fontWeight: FontWeight.bold, fontSize: SizeConfig.safeBlockHorizontal * 3, ), ), Text( "DISCOUNTED PRICE : GH¢ 0.00", style: TextStyle( color: Colors.black, fontWeight: FontWeight.bold, fontSize: SizeConfig.safeBlockHorizontal * 3, ), ), new Wrap( direction: Axis.horizontal, children: [ Image( width: SizeConfig.safeBlockHorizontal * 5, image: AssetImage( "assets/images/silver1.png"), ), Container( margin: EdgeInsets.only( top: 5, ), child: Text( "Silver Coin Cost : ", style: TextStyle( color: Colors.black, fontWeight: FontWeight.bold, fontSize: SizeConfig .safeBlockHorizontal * 3, ), ), ), Container( margin: EdgeInsets.only( top: 5, ), child: Text( CouponRateCalculator.getRate( img.targetCost! * (img.lowerLimit! / 100)) .toString(), style: TextStyle( color: Colors.black, fontWeight: FontWeight.bold, fontSize: SizeConfig .safeBlockHorizontal * 3, ), ), ), ], ), ], ), ), ), Align( alignment: Alignment.bottomCenter, child: Container( margin: EdgeInsets.symmetric( vertical: MediaQuery.of(context).size.width * 0.15), child: Text( img.targetName!.toUpperCase(), textAlign: TextAlign.center, style: TextStyle( color: Colors.black, fontSize: 20, fontWeight: FontWeight.bold, ), ), ), ), ], ), ), Container( padding: EdgeInsets.symmetric( horizontal: MediaQuery.of(context).size.width * 0.025, ), child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Container( width: MediaQuery.of(context).size.width * 0.4, height: 70, padding: EdgeInsets.only( top: 5, ), child: SingleChildScrollView( scrollDirection: Axis.vertical, child: Column( children: [ Container( child: Text( "Pay : GH¢ 0.00 only", style: TextStyle( color: Colors.red, fontWeight: FontWeight.bold, ), ), ), img.condition == 'none' ? Container() : Container( child: Text( "Condition : " + img.condition! .replaceAll('"', ""), ), ), ], ), ), ), Container( width: SizeConfig.safeBlockHorizontal * 22, height: SizeConfig.safeBlockHorizontal * 22, padding: EdgeInsets.all(2.5), decoration: BoxDecoration( border: Border.all( color: Colors.red, ), borderRadius: BorderRadius.only( topLeft: Radius.circular(80), topRight: Radius.circular(80), bottomLeft: Radius.circular(80), bottomRight: Radius.circular(80), ), ), child: Container( width: SizeConfig.safeBlockHorizontal * 22, height: SizeConfig.safeBlockHorizontal * 22, //padding: EdgeInsets.all(2.5), decoration: BoxDecoration( shape: BoxShape.circle, color: Colors.red, border: Border.all(color: Colors.red), image: DecorationImage( fit: BoxFit.fill, image: AssetImage("assets/images/red.png"), colorFilter: new ColorFilter.mode( Colors.red.withOpacity(0.5), BlendMode.overlay), ), ), child: Transform.rotate( angle: -math.pi / 4, child: Container( margin: EdgeInsets.symmetric( vertical: 20, horizontal: 5), height: 10, child: Text( "FREE!!!", style: TextStyle( color: Colors.white, fontSize: 16.2, fontWeight: FontWeight.bold, ), ), ), ), ), ), ], ), ), ], ), ), ), ), SizedBox( height: 20, ), new Wrap( alignment: WrapAlignment.center, runSpacing: 10, spacing: 10, crossAxisAlignment: WrapCrossAlignment.center, children: [ new ElevatedButton( style: ElevatedButton.styleFrom( shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(18.0), ), primary: Colors.red, padding: new EdgeInsets.all(10.0), ), onPressed: () => swipeLeft(img), child: new Container( height: 30.0, width: 100.0, alignment: Alignment.center, decoration: new BoxDecoration( color: Colors.red, borderRadius: new BorderRadius.circular(60.0), ), child: new Text( "Not Interested", style: new TextStyle(color: Colors.white), ), ), ), new ElevatedButton( style: ElevatedButton.styleFrom( shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(18.0), ), primary: Colors.green, padding: new EdgeInsets.all(10.0), ), onPressed: () => swipeRight(img), child: new Container( height: 30.0, width: 100.0, alignment: Alignment.center, decoration: new BoxDecoration( color: Colors.green, borderRadius: new BorderRadius.circular(60.0), ), child: new Text( "Interested", style: new TextStyle(color: Colors.white), ), ), ), ], ) ], ), ), ), ); }