jetpack_compose_components
Release Notes (1.0.0)
مجموعة منسقة من jetpack القابلة لإعادة الاستخدام وقابلة للتخصيص تتألف مكونات لتسريع تطوير واجهة المستخدم Android.
أضف مستودع jitpack إلى ملف build.gradle الجذر الخاص بك:
dependencyResolutionManagement {
.. .
repositories {
.. .
maven { setUrl( " https://jitpack.io " ) }
}
} dependencyResolutionManagement {
.. .
repositories {
.. .
maven { url ' https://jitpack.io ' }
}
}أضف التبعية:
dependencies {
implementation( " com.github.Tanish-Ranjan:jetpack_compose_components:version " )
} dependencies {
implementation ' com.github.Tanish-Ranjan:jetpack_compose_components:version '
}استخدم Composable:
@Composable
fun MyScreen () {
// Example usage of a circular throbber
CircularThrobber1 (
modifier = Modifier .size( 100 .dp),
color = Color . Blue
)
}تصفح من خلال مجموعة ضخمة من جميع المكونات التي توفرها هذه المكتبة في صفحة المكونات.
نرحب بالمساهمات! يرجى مراجعة دليل المساهمة لدينا للحصول على تفاصيل حول كيفية المشاركة.
هذا المشروع مرخص بموجب ترخيص معهد ماساتشوستس للتكنولوجيا.