diff --git a/README.md b/README.md new file mode 100644 index 0000000..e8f92c1 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +Jetpack Compose - Scribble Indicator +--- + +my maven library project + +

+ License + API + Author + Profile +

+ +## Download + +lib is available on `mavenCentral()`. + +```groovy +implementation("com.xuie0000:scribble-indicator:1.0.0") +``` + +## Usage + +```groovy +val pagerState: PagerState = rememberPagerState { list.size } + +ScribbleIndicator( + list = list, + modifier = Modifier, + pagerState = pagerState, + title = { + }, + content = { + }, +) +```