rubensousa / Decorator

Decorator is an Android library that helps creating composable margins and dividers in RecyclerViews
Apache License 2.0
534 stars 38 forks source link

Support vertical and horizontal margins in GridMarginDecoration #8

Closed rubensousa closed 3 years ago

rubensousa commented 4 years ago

Is:

class GridMarginDecoration(
    @Px private var margin: Int,

Should be:

class GridMarginDecoration(
    @Px private var verticalMargin: Int,
    @Px private var horizontalMargin: Int,