From 8741e114a0badf1c506b035e1e88b666543b4999 Mon Sep 17 00:00:00 2001 From: Gowtham Balamurugan <68514286+a914-gowtham@users.noreply.github.com> Date: Sat, 27 May 2023 22:16:55 +0530 Subject: [PATCH] update: horizontalPadding --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3f34a28..6efa597 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Ratingbar composable can be customized using [RatingBarConfig](https://github.c .numStars(10) .isIndicator(true) .size(24.dp) - .padding(6.dp) + .horizontalPadding(6.dp) .style(RatingBarStyle.HighLighted) ``` @@ -68,7 +68,7 @@ Ratingbar composable can be customized using [RatingBarConfig](https://github.c RatingBar( value = rating, config = RatingBarConfig() - .padding(2.dp) + .horizontalPadding(2.dp) .size(32.dp), painterEmpty = painterResource(id = R.drawable.icon_empty), painterFilled = painterResource(id = R.drawable.icon_filled),