Skip to content

Instantly share code, notes, and snippets.

View ResonantEdge's full-sized avatar

ResonantEdge ResonantEdge

View GitHub Profile
@ResonantEdge
ResonantEdge / apple_subscription_creation.swift
Last active March 15, 2021 10:32
iOS Appetite Subscription Creation
var imageCard = "icons_credit"
let child = SpinnerViewController()
var selectedMonth : Int?
var selectedYear : Int?
var restaurant: Restaurant?
var cartItemArray = [PlanMenu]()
var planDictionary = [String: Any]()
var submitViewModel = SubmitViewModel()
@ResonantEdge
ResonantEdge / android_subscription_creation.java
Created March 15, 2021 10:23
Android Appetite Subscription
public class PaymentFragment extends Fragment {
// General
private Context paymentContext;
private Bundle bundle;
private Switch backgroundSwitch;
private ProgressBar progressBar;
private Button btnCreatePlan, btnBack;
private View paymentView;
private RelativeLayout monthFrame, yearFrame;