LogoCraftReactNative
Components

Counter

A counter component that allows users to increment or decrement a value. It displays the current value and provides buttons for incrementing and decrementing.

Component preview

Component dependencies

@/craftrn-ui/components/ButtonRound
@/craftrn-ui/components/Text

Usage

Screen.tsx
import { Counter } from "@/craftrn-ui/components/Counter";
 
export const Screen = () => <Counter onValueChange={() => {}} value={0} />;

Props

PropTypeDefault
onValueChange
(value: number) => void
-
initialValue?
number
0
maxValue?
number
10
emptyLabel?
string
'0'

On this page