Skip to content

Commit

Permalink
docs: changed introduction
Browse files Browse the repository at this point in the history
  • Loading branch information
gotev committed Mar 20, 2021
1 parent 82be3df commit 388aac5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Recycler Adapter [ ![Download](https://api.bintray.com/packages/gotev/maven/recycler-adapter/images/download.svg) ](https://bintray.com/gotev/maven/recycler-adapter/_latestVersion)

Makes the use of RecyclerView easier, modular and less error-prone.
RecyclerView-driven declarative UIs.

Using stock Android View system and Recycler Adapter, you can already write UIs similar to [JetPack Compose](https://developer.android.com/jetpack/compose) and use it in production.

Standard `RecyclerView.Adapter` is tedious to work with, because you have to write repetitive boilerplate and spaghetti code and to concentrate all your items view logic and binding into the adapter itself, which is really bad. This library was born to be able to have the following for each element in a recycler view:

Expand All @@ -10,8 +12,6 @@ Standard `RecyclerView.Adapter` is tedious to work with, because you have to wri

In this way every item of the recycler view has its own set of files, resulting in a cleaner and easier to maintain code base.

This allows also to write completely declarative UIs, using stock Android View system and be able to already write something similar to [JetPack Compose](https://developer.android.com/jetpack/compose) and use it in production.

# Index

* [Setup](#setup)
Expand Down

0 comments on commit 388aac5

Please sign in to comment.