Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bradmartin/flexing
Flexing is an Android library with utility functions.
https://github.com/bradmartin/flexing
android android-library bitmap kotlin
Last synced: 10 days ago
JSON representation
Flexing is an Android library with utility functions.
- Host: GitHub
- URL: https://github.com/bradmartin/flexing
- Owner: bradmartin
- License: mit
- Created: 2018-08-21T05:12:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-01T07:17:03.000Z (over 6 years ago)
- Last Synced: 2024-12-18T07:56:14.616Z (23 days ago)
- Topics: android, android-library, bitmap, kotlin
- Language: Kotlin
- Size: 145 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Flexing :muscle: for Android
by Brad Martin
## Install
### Gradle:
- Add it in your root build.gradle at the end of repositories:
```groovy
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```- Add the dependency:
```groovy
dependencies {
implementation 'com.github.bradmartin:flexing:0.1.30'
}
```### Maven
- Add the JitPack repository to your build file:
```xml
jitpack.io
https://jitpack.io
```
- Add the dependency:
```xml
com.github.bradmartin
flexing
0.1.30```
### API
### ImagesKt Static Methods
| Method | Description |
| -------------------------------------------------- | ---------------------------------- |
| _getBitmapFromImageView(ImageView: image)_: Bitmap | Returns a Bitmap from an ImageView |