Last active
November 4, 2022 07:51
-
-
Save aliakhtar49/8a6e038361922db14d167600820de9a1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
final class OrderTrackingViewController: UIViewController { | |
override func viewDidLoad() { | |
// Initial show loading view | |
ui.configureSkeltonView() | |
repo.fetchOrderTrackingResponse { [weak self] orderResponse in | |
// Response receive render whole screen with data | |
self?.ui.configureContainerView(response: orderResponse!) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment