Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/semicolondsm/semicolondesign_android
Semicolon;에서 개발한 교내 프로젝트 전용 디자인 시스템입니다.
https://github.com/semicolondsm/semicolondesign_android
android android-library design-system jetpack-compose ui
Last synced: about 2 months ago
JSON representation
Semicolon;에서 개발한 교내 프로젝트 전용 디자인 시스템입니다.
- Host: GitHub
- URL: https://github.com/semicolondsm/semicolondesign_android
- Owner: semicolondsm
- License: mit
- Created: 2021-09-02T05:43:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-20T00:25:07.000Z (over 2 years ago)
- Last Synced: 2024-05-28T16:33:25.432Z (8 months ago)
- Topics: android, android-library, design-system, jetpack-compose, ui
- Language: Kotlin
- Homepage:
- Size: 193 KB
- Stars: 13
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Semicolon Design
[![](https://jitpack.io/v/semicolondsm/SemicolonDesign_Android.svg)](https://jitpack.io/#semicolondsm/SemicolonDesign_Android)The design components for Jetpack Compose in Android.
It is based on Semicolon design system.
## Download
Add `maven { url 'https://jitpack.io' }` on your `build.gradle`.
``` groovy
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
```And, add dependency on Semicolon Design to `build.gradle`.
``` groovy
dependencies {
implementation 'com.github.semicolondsm:semicolondesign_android:$version'
}
```
Then you can use this.## License
```
MIT LicenseCopyright (c) 2021 SEMICOLON;
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```