Transaction List Component
The TransactionListComponent shows a list of enriched transactions in a user-friendly way, with each transaction having an associated brand.
Usage
- SwiftUI
- Objective-C
SwiftUI
To use this view in a SwiftUI project, just call the TransactionListComponent method of your LuneSDKManager instance as shown in the example below.
HomeView.swift
import SwiftUI
import LuneSDK
struct HomeView: View {
// removed for simplicity...
var body: some View {
luneSDK.TransactionListComponent()
}
}
Objective-C
To use this view in an Objective-C project, just call the TransactionListComponent method of your LuneSDKObjcManager instance as shown in the example below.
YourViewController.m
- (void)viewDidLoad {
[super viewDidLoad];
// transaction list setup, after initializing luneSDK
UIViewController *hostingController = [self.luneSDK TransactionListComponentWithConfig:nil];
[self addChildViewController:hostingController];
[self.view addSubview:hostingController.view];
// constraints setup removed for simplicity...
}
Localization Keys and Analytics Tags
Analytics Tags Localization Keys
![]() | Analytics Tags
Localization Keys
|
![]() | Analytics Tags
Localization Keys
|
![]() | Analytics Tags
|


