shlogg · Early preview
Kiolk @kiolk

Implementing Comment Screen With Child Comments And API Calls

Implemented separate screen for selected comment & child comments, reused comments feed from article screen. Added logic to fetch comments by id.

What I did:
I implemented a separate screen to display the selected comment and all its child comments. It was simple; I just reused the comments feed from the article screen. Additionally, I added logic to fetch comments by id, enabling this screen to open with only an id. I realized I forgot to complete the logic to fetch the number of replies. 

This isn't related to the challenge, but I wanted to share a helpful article about modularization for Android projects. I think it is applicable to the KMM project. Modularising Trendyol Android App for Build Efficiency is the best explanation of th...