This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |