Responsive Compose
This is a responsive compose library for android developers if you're using jetpack compose for your projects , you use sp for font size and sd for dimensions. for example
but there is a problem , your compose is not responsive . for having a responsive UI using jetpack compose , you can easily use this library.
here is an responsive UI example
very simple just use sdp and ssp instead of sd and sp
----Gradle------
dependencyResolutionManagement{
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
----Dependency-------
dependencies
{
implementation 'com.github.majid2851:ResponsiveJetpackCompose:Tag'
}