Last active
March 3, 2019 15:31
-
-
Save sudeshim3/0715fcaf9a52dd64953d3d6ddd40c72b to your computer and use it in GitHub Desktop.
Android and flutter list
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
<android.support.v7.widget.RecyclerView | |
android:id="@+id/rv_users" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:layout_margin="8dp"/> |
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
implementation 'com.android.support:recyclerview-v7:28.0.0' // For recyclerview | |
implementation 'com.squareup.retrofit2:retrofit:2.5.0' // HTTP client for API calls | |
implementation 'com.squareup.retrofit2:converter-gson:2.5.0' // Converter which uses gson serialization to convert response to model | |
implementation 'com.mikhaellopez:circularimageview:3.2.0' // For profile picture |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment