Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dokar3/ExpandableText
A small library to display expandable texts in Jetpack Compose.
https://github.com/dokar3/ExpandableText
android android-library jetpack-compose kotlin
Last synced: 3 months ago
JSON representation
A small library to display expandable texts in Jetpack Compose.
- Host: GitHub
- URL: https://github.com/dokar3/ExpandableText
- Owner: dokar3
- License: apache-2.0
- Created: 2022-02-28T01:52:19.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-02T06:29:16.000Z (4 months ago)
- Last Synced: 2024-11-05T11:27:14.897Z (3 months ago)
- Topics: android, android-library, jetpack-compose, kotlin
- Language: Kotlin
- Homepage:
- Size: 5.32 MB
- Stars: 13
- Watchers: 2
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-list - dokar3/ExpandableText - A small library to display expandable texts in Jetpack Compose. (Kotlin)
README
# ExpandableText
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.dokar3/expandabletext/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.dokar3/expandabletext)
Expandable text, similar to `Text()` in Jetpack Compose.
[Sample](/sample/src/main/java/io/dokar/expandabletext/sample/MainActivity.kt) screen:
![Screen gif](/images/screen.gif)
# Usage
Add the dependency [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.dokar3/expandabletext/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.dokar3/expandabletext) :
```groovy
implementation 'io.github.dokar3:expandabletext:latest_version'
```Show some texts:
```kotlin
val text = "Your long text ".repeat(10)
var expanded by remember { mutableStateOf(false) }
ExpandableText(
expanded = expanded,
text = text,
collapsedMaxLines = 2,
modifier = Modifier
.animateContentSize()
.clickable { expanded = !expanded },
toggle = { Text(text = if (expanded) "Show less" else "Show more") },
)
```# Known problems
- `toggle` will not be visible if:
- `overflow` was set to `TextOverflow.Ellipsis`:
```kotlin
ExpandableText(
// ...
overflow = TextOverflow.Ellipsis,
)
```
- `text` is an `AnnoatedString` and a `ParagraphStyle` was applied to the line needed to show the toggle. For example:
```kotlin
val text = buildAnnotatedString {
withStyle(ParagraphStyle()) {
append("Some long text...")
}
}
ExpandableText(
text = text,
// ...
)
```# License
```
Copyright 2022 dokar3Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```