From 1f73caaaf71d74de63373fa7497e36c9cec9e624 Mon Sep 17 00:00:00 2001 From: Stefan Jovanovic Date: Thu, 31 Aug 2023 08:10:32 +0200 Subject: [PATCH] Update README.md --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8262160..cd3ea37 100644 --- a/README.md +++ b/README.md @@ -147,8 +147,8 @@ BSInput( BSInput( value = inputValue, label = "Email Address", - onValueChange = {}, - floating = true + floating = true, + onValueChange = {} ) ``` @@ -159,10 +159,10 @@ BSInput( value = inputValue, label = "Email Address", placeholder = "Type here", - onValueChange = {}, validation = InputValidation( isValid = true - ) + ), + onValueChange = {} ) ``` @@ -173,10 +173,10 @@ BSInput( value = inputValue, label = "Email Address", placeholder = "Type here", - onValueChange = {}, validation = InputValidation( isInvalid = true - ) + ), + onValueChange = {} ) ``` @@ -187,8 +187,8 @@ BSInput( value = inputValue, label = "Email Address", placeholder = "Type here", - onValueChange = {}, - disabled = true + disabled = true, + onValueChange = {} ) ```